1 | game.Players.LocalPlayer.Character.Torso:MoveTo(game.Workspace.MapStorage.Model.tp |
and they dont tp computer says:
ServerScriptService.GameSelect:20:attempt to index nil with character.
Do
1 | game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.MapStorage.Model.tp.CFrame |
instead, if you R15 or
1 | game.Players.LocalPlayer.Character.Torso.CFrame = game.Workspace.MapStorage.Model.tp.CFrame |
if you use R6
You can't get the local player on the server, you have to use PlayerAdded
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 |
3 | end ) |