Upscalefanatic3

(Roblox) OverRage GUI (NO IDEA WHAT GAME)

Mar 11th, 2020
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         local main = library:CreateWindow("OverRage")
  2.         main:Section("Main Functions")
  3.         local getCoinsBtn = main:Button("Get All Coins", function()
  4.             for i,v in pairs(game.Workspace:GetDescendants()) do
  5.                 if string.lower(v.Name) == "coin" then
  6.                     v.Position = PlrService.LocalPlayer.Character.Head.Position
  7.                 end
  8.             end
  9.         end)
  10.         main:Section("Player's Functions")
  11.         local walkSpeedBox = main:Box('Walkspeed', {
  12.             flag = "ws";
  13.             type = 'number';
  14.         }, function(new, old, enter)
  15.             PlrService.LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(new)
  16.         end)
  17.         local jumpPowerBox = main:Box('JumpPower', {
  18.             flag = "jp";
  19.             type = 'number';
  20.         }, function(new, old, enter)
  21.             PlrService.LocalPlayer.Character.Humanoid.JumpPower = tonumber(new)
  22.         end)
Add Comment
Please, Sign In to add comment