Causmic

Arsenal Candy

Nov 10th, 2019
2,953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. local owner = game:GetService("Players").LocalPlayer
  2. local ticket = "Halloween Haberdash"
  3. local deb = game.Workspace.Debris
  4. function movealltickets()
  5. local h = deb:GetDescendants()
  6. for index, g in pairs(h) do
  7. if g.Name == ticket then
  8. owner.Character.HumanoidRootPart.CFrame = g.CFrame
  9. wait()
  10. elseif g.Name ~= ticket then
  11. end
  12. end
  13. end
  14.  
  15. while wait() do
  16. movealltickets()
  17. end
Add Comment
Please, Sign In to add comment