Advertisement
TheNadie

fitness simulator gui

Jan 24th, 2020
6,294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/CkyR8ePz",true))()
  2. local w = library:CreateWindow('Fitness Sim GUI')
  3. w:Section('Made by Simpan #9022')
  4. w:Section('General')
  5. local t = w:Toggle('Autosell', {flag = "toggle1"})
  6. spawn(function()
  7. while wait() do
  8. if w.flags.toggle1 then
  9. game:GetService("Workspace").Rings.Sell.Hitbox.CFrame = game.Players.localPlayer.Character.HumanoidRootPart.CFrame
  10. end
  11. end
  12. end)
  13.  
  14. local t2 = w:Toggle('Autotrain', {flag = "toggle2"})
  15. spawn(function()
  16. while wait() do
  17. if w.flags.toggle2 then
  18. game:GetService("ReplicatedStorage").Events.Lift:FireServer()
  19. end
  20. end
  21. end)
  22.  
  23. local w = library:CreateWindow('Pets')
  24. w:Section('Buy Pets')
  25. local b = w:Button("Buy Normal Pet", function()
  26. local oh1 = "Normal"
  27. game:GetService("ReplicatedStorage").Events["Buy Pet"]:FireServer(oh1)
  28. end)
  29.  
  30. local b = w:Button("Buy Normal Pet", function()
  31. local oh1 = "Spiky"
  32. game:GetService("ReplicatedStorage").Events["Buy Pet"]:FireServer(oh1)
  33. end)
  34.  
  35. local b = w:Button("Buy Normal Pet", function()
  36. local oh1 = "Fancy"
  37. game:GetService("ReplicatedStorage").Events["Buy Pet"]:FireServer(oh1)
  38. end)
  39.  
  40. local b = w:Button("Buy Normal Pet", function()
  41. local oh1 = "Golden"
  42. game:GetService("ReplicatedStorage").Events["Buy Pet"]:FireServer(oh1)
  43. end)
  44.  
  45. local b = w:Button("Buy Normal Pet", function()
  46. local oh1 = "Ghost"
  47. game:GetService("ReplicatedStorage").Events["Buy Pet"]:FireServer(oh1)
  48. end)
  49.  
  50. local b = w:Button("Buy Normal Pet", function()
  51. local oh1 = "Fiery"
  52. game:GetService("ReplicatedStorage").Events["Buy Pet"]:FireServer(oh1)
  53. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement