Untitled
unknown
plain_text
2 years ago
2.4 kB
3
Indexable
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Fat_Danniel│AbilityWarsKiller│OP Script Hub", "Ocean") -- MAIN local Main = Window:NewTab("MAIN") local MainSection = Main:NewSection("Main") --1st script MainSection:NewButton("IdenLua/Orion Library", "Combat bot, Atomatically Chases Players", function() loadstring(game:HttpGet("https://package.idenlua.tk/Scripts/AbbWars.lua"))() end) --2nd script MainSection:NewButton("Dizzy hub", "Combat bot, Godmode, Auto Farm, Killaura, Etc", function() loadstring(game:HttpGet(("https://raw.githubusercontent.com/dizyhvh/rbx_scripts/main/dizzy_hub/loader.lua")))(); end) --3rd script MainSection:NewButton("AWD Public", "Massive, Blatant Gui", function() loadstring(game:HttpGet("https://paste.ee/r/Wo5Kj"))() end) MainSection:NewToggle("Super Human", "WalkSpeed and JumpHeight (May not work)", function(state) if state then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120 else game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 end end) -- LOCAL PLAYER local Player = Window:NewTab("Player") local PlayerSection = Player:NewSection("Player") PlayerSection:NewSlider("WalkSpeed", "WalkSpeed Slider MAY CRASH GAME", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) PlayerSection:NewSlider("JumpPower", "Jump height Slider MAY CRASH GAME", 350, 50, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.JumpPower = s end) PlayerSection:NewButton("Reset to Default", "Resets WalkSpeed and Jumpspeed to Default", function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 end) -- Extra local Extra = Window:NewTab("Extra") local ExtraSection = Extra:NewSection("Extra") ExtraSection:NewLabel("This GUI was made by Fat_Danniel on Youtube") ExtraSection:NewLabel("Subscribe and Like for more scripts") ExtraSection:NewLabel("Join the Fat_Danniel Discord Below") ExtraSection:NewLabel("https://discord.gg/R9HEPvVQBW")
Editor is loading...