Hey!
I’m having some weird issues when sending TeleportOptions using TeleportToPrivateServer()
.
When Client is teleported to the Private Server, data seems nil.
Brief example:
local TeleOptions = Instance.new("TeleportOptions")
TeleOptions:SetTeleportData("someArray")
TPservice:TeleportToPrivateServer(321, passID, PlayersArray, nil, TeleOptions)
These are the supposed parameters that TeleportToPrivateServer()
can handle:
Im getting the Client’s TeleOptions by
local TeleOps = TPS:GetLocalPlayerTeleportData()
TeleOps = nil…
Works perfect by using :TeleportAsync(321, PlayersArray, TeleOptions)
instead of :TeleportToPrivateServer()
Any suggestion why this is happening? Thank you for reading!