Advertisement
My_GUI

Strongest Punch Sim Script!!!

Sep 8th, 2023 (edited)
5,058
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.05 KB | None | 2 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("👑Strongest Punch Simulator Script By FoxyYT™👑", "BloodTheme")
  3.  
  4. --Tabs
  5. local Main = Window:NewTab("Main")
  6. local MainSection = Main:NewSection("Speed And Jump")
  7.  
  8. local Credits = Window:NewTab("Credits")
  9. local CreditsSection = Credits:NewSection("All credits goes to Tubers93")
  10.  
  11. --Buttons , Toggles etc..
  12. MainSection:NewToggle("Super-Human", "ToggleInfo", function(state)
  13.     if state then
  14.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  15.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  16.     else
  17.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  18.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  19.     end
  20. end)
  21.  
  22. MainSection:NewButton("Front/back Flip", "??????????", function()
  23.     loadstring(game:HttpGet(("https://pastebin.com/raw/7wDcPtLk"), true))()
  24. end)
  25.  
  26. MainSection:NewToggle("AutoTap", "ToggleInfo", function(state)
  27.     if state then
  28.         _G.autotap = true;
  29. while _G.autotap == true do
  30.     local args = {
  31.     [1] = {
  32.         [1] = "Activate_Punch"
  33.     }
  34. }
  35.  
  36. game:GetService("ReplicatedStorage"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
  37.     wait()
  38. end
  39.     else
  40.         _G.autotap = false;
  41. while _G.autotap == true do
  42.     local args = {
  43.     [1] = {
  44.         [1] = "Activate_Punch"
  45.     }
  46. }
  47.  
  48. game:GetService("ReplicatedStorage"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
  49.     wait()
  50. end
  51.     end
  52. end)
  53.  
  54. MainSection:NewTextBox("Speed", "Your Speed Value", function(txt)
  55.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (txt)
  56. end)
  57.  
  58. MainSection:NewTextBox("Jump", "Your Jump Power (Dosent Work At All)", function(txt)
  59.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = (txt)
  60. end)
  61.  
  62. CreditsSection:NewLabel("Note: It Is Still On Beta Test")
  63.  
  64. --UI Toggle
  65. MainSection:NewKeybind("Toggle GUI", "Press G to toggle The GUI But you can change it", Enum.KeyCode.G, function()
  66.     Library:ToggleUI()
  67. end)
Tags: #roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement