|
| 23 Oct 2011 09:47 AM |
This script is supposed to teleport you to Part when you say start. What is wrong with it?
function newplayer(player) M = Instance.new("BodyPosition") M.Parent = player.Character player.Chatted:connect(function(msg) if msg == "start" then M.Position = game.Workspace.Part.Position end end) end game.Players.PlayerAdded:connect(newplayer) |
|
|
| Report Abuse |
|