Shoujo_Ingrid

TP to everyone

Jun 14th, 2025 (edited)
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2.  
  3. for _, v in game.Workspace:GetDescendants() do
  4. pcall(function()
  5. if v:IsA("Seat") or v:IsA("VehicleSeat") then
  6. v:Destroy()
  7. end
  8. if v.CanTouch == true then
  9. v.CanTouch = false
  10. end
  11. end)
  12. end
  13.  
  14. while true do
  15. pcall(function()
  16. for _, player in game.Players:GetChildren() do
  17. print(player.Name)
  18. local tarChar = player.Character
  19. local plrChar = plr.Character
  20.  
  21. plrChar:PivotTo(tarChar.Head.CFrame)
  22. task.wait()
  23. end
  24. end)
  25. task.wait()
  26. end
Advertisement
Add Comment
Please, Sign In to add comment