Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.PlayerAdded:Connect(function(plr)
- plr.Chatted:Connect(function(msg)
- local args = string.split(msg, " ")
- if args[1] == "tp" then
- local user = args[2]
- plr.Character.Head.CFrame = game.Players[user].Character.Head.CFrame
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment