Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Hazy Hub", "Ocean")
- -- MAIN
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("Main")
- MainSection:NewButton("Proxima Hub", "This script has many working functions", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/TrixAde/Proxima-Hub/main/Main.lua"))()
- end)
- MainSection:NewToggle("Super-Human", "go fast and jump high", 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)
- MainSection:NewButton("Infinite Yield", "FE Admin Commands", function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
- end)
- MainSection:NewButton("SoggyHub", "Another great gui.", function()
- loadstring(game:HttpGet('https://soggyhub.bad.mn',true))()
- end)
- --LOCAL PLAYER
- local Player = Window:NewTab("Player")
- local PlayerSection = Player:NewSection("Player")
- PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
- end)
- --Other
- local Other = Window:NewTab("Other")
- local OtherSection = Other:NewSection("Other")
- OtherSection:NewButton("AutoClicker", "Auto clicks without being active", function()
- _G.Tap = true; -- how to toggle! True = on. False = Off.
- spawn(function()
- while _G.Tap == true do
- local args = {[1] = 1}
- game:GetService("ReplicatedStorage").Remotes.Tap:FireServer()
- wait()
- end
- end)
- print('Im now running an autoclicker for free and it is made by svenskajim')
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement