Advertisement
EPRX

Untitled

Jan 25th, 2020
11,386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/HYcfs6KC", true))()
  2. local example = library:CreateWindow({
  3. text = "Pushing Simulator"
  4. })
  5.  
  6. example:AddBox("WalkSpeed", function(object, focus)
  7. if focus then
  8. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(object.Text) or 16
  9. end
  10. end)
  11.  
  12. example:AddToggle("Visible Hitbox", function()
  13. local lpp = game.Players.LocalPlayer
  14. if _G.u == true then
  15. _G.u = false
  16. else
  17. _G.u = true
  18. end
  19. while _G.u do
  20. wait()
  21. for i,v in pairs(game.workspace:GetDescendants()) do
  22. if v.Name == (lpp.Name.. "'s Hitbox") then
  23. v.Transparency = 0.9
  24. end
  25. end
  26. end
  27. end)
  28.  
  29. example:AddButton("Toggle Push (R)", function()
  30. local lp = game.Players.LocalPlayer.Name
  31. local lp2 = game.Players.LocalPlayer
  32. plr = game.Players.LocalPlayer
  33. mouse = plr:GetMouse()
  34. mouse.KeyDown:connect(function(key)
  35. if key == "r" then
  36. if _G.e == true then
  37. _G.e = false
  38. else
  39. _G.e = true
  40. end
  41. while _G.e do
  42. wait()
  43. local Event = game:GetService("Workspace")[lp].Push.PushEvent
  44. Event:FireServer()
  45. end
  46. end
  47. end)
  48. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement