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("👑Strongest Punch Simulator Script By FoxyYT™👑", "BloodTheme")
- --Tabs
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("Speed And Jump")
- local Credits = Window:NewTab("Credits")
- local CreditsSection = Credits:NewSection("All credits goes to Tubers93")
- --Buttons , Toggles etc..
- MainSection:NewToggle("Super-Human", "ToggleInfo", 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("Front/back Flip", "??????????", function()
- loadstring(game:HttpGet(("https://pastebin.com/raw/7wDcPtLk"), true))()
- end)
- MainSection:NewToggle("AutoTap", "ToggleInfo", function(state)
- if state then
- _G.autotap = true;
- while _G.autotap == true do
- local args = {
- [1] = {
- [1] = "Activate_Punch"
- }
- }
- game:GetService("ReplicatedStorage"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
- wait()
- end
- else
- _G.autotap = false;
- while _G.autotap == true do
- local args = {
- [1] = {
- [1] = "Activate_Punch"
- }
- }
- game:GetService("ReplicatedStorage"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
- wait()
- end
- end
- end)
- MainSection:NewTextBox("Speed", "Your Speed Value", function(txt)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (txt)
- end)
- MainSection:NewTextBox("Jump", "Your Jump Power (Dosent Work At All)", function(txt)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = (txt)
- end)
- CreditsSection:NewLabel("Note: It Is Still On Beta Test")
- --UI Toggle
- MainSection:NewKeybind("Toggle GUI", "Press G to toggle The GUI But you can change it", Enum.KeyCode.G, function()
- Library:ToggleUI()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement