Sir_Spaceboi

Script #1

Dec 17th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(plr)
  2. plr.Chatted:Connect(function(msg)
  3. local args = string.split(msg, " ")
  4.  
  5. if args[1] == "tp" then
  6. local user = args[2]
  7.  
  8. plr.Character.Head.CFrame = game.Players[user].Character.Head.CFrame
  9. end
  10. end)
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment