Advertisement
dady172172

eg - testing

Oct 23rd, 2019
590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. --https://github.com/dady172172/Roblox-Cheats
  2. local array1 = {
  3. "mountaincoins",
  4. "desertcoins",
  5. "oceancoins",
  6. "autumncoins",
  7. "forestcoins",
  8. "plainscoins",
  9. "icecoins",
  10. "cavecoins",
  11. "skyislandcoins",
  12. "thiefcoins",
  13. "secretcoins",
  14. "abysscoins",
  15. }
  16.  
  17. while wait() do
  18.    
  19.     for _,i in ipairs(array1) do
  20.         print(i)
  21.        
  22.         for _,v in pairs(game:GetService("Workspace").coinspawns[i]:GetChildren()) do
  23.             for _,g in pairs(v:GetChildren()) do
  24.                 if string.match(g.Name, "coin") then
  25.                     print(g.Name)
  26.                     wait(.2)
  27.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = g.CFrame
  28.                 end
  29.             end
  30.         end
  31.        
  32.     end
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement