TeleportService:Teleport is broken

I’v been trying to use the teleport service, and I’v used it before without issues.
Now, however, I’m not able to teleport anyone.

Heres my code (Server Script):
local joingame = Instance.new(“RemoteEvent”)
joingame.Parent = game.RStorage.RemoteEvents
joingame.Name = “JoinGame”
joingame.OnServerEvent:connect(function(player)
print(“Joining game…”)
game:GetService(“TeleportService”):Teleport(238327300,player)
print(“Teleported”)
end)

It prints:
Joining game…
Teleported

No error or anything. I’m assuming this is a roblox bug…
Any help?

1 Like

Found whats causing the problem!
The issue is, if the player has no character then he can not get teleported.

That’s problematic since not all games use characters.

1 Like