Advertisement
dady172172

Workout Island script

Dec 20th, 2019
16,334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.71 KB | None | 0 0
  1. --[[
  2. Game https://www.roblox.com/games/4032944086/PETS-Workout-Island
  3. More https://github.com/dady172172/Roblox-Cheats I have moved to Gethub
  4. ]]--
  5.  
  6. --lift weight
  7. _G.lw = true
  8. while _G.lw == true do
  9.     wait(.1)
  10.     game.ReplicatedStorage.Remotes.LiftWeight:FireServer()
  11. end
  12.  
  13.  
  14. --collect coins
  15.  
  16. _G.coin = true
  17. while _G.coin == true do  
  18.     for _,v in pairs(game:GetService("Workspace"):GetChildren()) do
  19.         if _G.coin == false then return end
  20.         if v.Name == "CoinModel" then
  21.             wait(.0000001)         
  22.             local save = v.CFrame
  23.             v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  24.             wait(.0000001)
  25.             v.CFrame = save
  26.         end
  27.     end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement