Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plr = game.Players.LocalPlayer
- chr = plr.Character
- ss = game.Workspace.CoinsHolder
- table = {Coin = true}
- _G.Active = true
- while _G.Active do
- for i,v in pairs(ss:GetChildren()) do
- if table[v.Name] then
- print("Found a", v.Name)
- v.CanCollide = false
- v.Position = chr.HumanoidRootPart.Position
- wait(0.1)
- end
- end
- wait()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement