Advertisement
BINO2002

Untitled

Sep 23rd, 2019
1,437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. chr = plr.Character
  3. ss = game.Workspace.CoinsHolder
  4.  
  5. table = {Coin = true}
  6.  
  7. _G.Active = true
  8.  
  9. while _G.Active do
  10. for i,v in pairs(ss:GetChildren()) do
  11. if table[v.Name] then
  12. print("Found a", v.Name)
  13. v.CanCollide = false
  14. v.Position = chr.HumanoidRootPart.Position
  15. wait(0.1)
  16. end
  17. end
  18. wait()
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement