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
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.MapStorage.Model.tp.CFrame
instead, if you R15 or
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
game.Players.PlayerAdded:Connect(function(plr) end)