Player teleport into map problems

Hello! I need a help in fixing ‘teleporting players into the map’ problems.
It happens usually when player lags and script can not teleport him sometimes, I wanna know how is it possible to fix and what should I use? Thank you. (And yes this is not Teleport Service, it moves player’s position to the map just like other games).

1 Like

Are you using TeleportService, or are you just teleporting Players in-game to your map’s location? Could you share your script for handling your player’s teleports?

I’m assuming you’re asking for #help-and-feedback:scripting-support . It would be more suitable to shift ur post to that category

Sorry I forgot to add it’s not an TeleportService, it just moves player’s position.

You can try pivoting the character to the specific map CFrame position. For example:

local YourCFrame = -- CFrame here
Character:PivotTo(CFrame.new(YourCFrame))

To avoid lag problems, you should wait for the player’s character to be added. Referencing the character like this would work:

Character = Player.Character or 
Player.CharacterAdded:Wait()
2 Likes

Alright. Thank you for solution! I’ll try it.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.