Advertisement
FurkingBoi

Extrm sprinting sim

Jan 2nd, 2020
1,555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local a = library:CreateWindow('Cheats') local UIName = math.random(1000,9999) game:GetService("CoreGui").ScreenGui.Name = UIName
  3. a:Section('--= Mods =--')
  4. a:Toggle('Infinite Speed', {flag = "InfS"})
  5. a:Toggle('Infinite Rebirths', {flag = "InfR"})
  6. spawn(function()
  7. while wait() do
  8. if a.flags.InfS == true then
  9. for x=0,10 do
  10. game:GetService("ReplicatedStorage").SwitchLeaderstats:FireServer("Speed", 10000000000000)
  11. end
  12. end
  13. if a.flags.InfR == true then
  14. for x=0,10 do
  15. game:GetService("ReplicatedStorage").SwitchLeaderstats:FireServer("Rebirths", 10000000000000)
  16. end
  17. end
  18. end
  19. end)
  20. a:Section('--= Change Stats =--')
  21. a:Box('Speed', {
  22. flag = "ws";
  23. type = 'number';
  24. }, function(new, old, enter)
  25. print(new, old, enter)
  26. game:GetService("ReplicatedStorage").SwitchLeaderstats:FireServer("Speed", new)
  27. end)
  28. a:Box('Rebirths', {
  29. flag = "ws";
  30. type = 'number';
  31. }, function(new, old, enter)
  32. print(new, old, enter)
  33. game:GetService("ReplicatedStorage").SwitchLeaderstats:FireServer("Rebirths", new)
  34. end)
  35. local b = library:CreateWindow('Credits')
  36. b:Section('Wally - UI Library')
  37. b:Section('therealDEXLTH - Scripting')
  38. local c = library:CreateWindow('GUI')
  39. c:Button("Destroy GUI", function()
  40. game.CoreGui[UIName]:Destroy()
  41. end)
  42. c:Button("Rejoin", function()
  43. game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer)
  44. end)
  45. c:Bind("Hide Gui", {
  46. flag = "killbind";
  47. kbonly = true;
  48. default = Enum.KeyCode.RightShift;
  49. }, function()
  50. for i,v in pairs(game:GetService("CoreGui")[UIName]:GetChildren()) do
  51. if v.Visible == false then
  52. v.Visible = true
  53. else
  54. v.Visible = false
  55. end
  56. end
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement