Advertisement
NotSirMeme

Untitled

Oct 25th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. --[[ DONT SPAWN IN. WAIT TILL GAME LOADS THEN EXECUTE
  2.  
  3.  
  4.  
  5. ]]
  6.  
  7.  
  8. local owner = game:GetService("Players").LocalPlayer
  9. local ticket = "Halloween Haberdash"
  10. local deb = game.Workspace.Debris
  11. function  movealltickets()
  12. local h = deb:GetDescendants()
  13. for index, g in pairs(h) do
  14. if g.Name == ticket then
  15. owner.Character.HumanoidRootPart.CFrame = g.CFrame
  16. wait()
  17. elseif g.Name ~= ticket then
  18. end
  19. end
  20. end
  21.  
  22. while wait() do
  23. movealltickets()
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement