Hey There!
I will try to Explain What i Need Help with In the Shortest Way Possible In this Post.
Basically I Am Teleporting the Player From one Game place to Another.
But I Want the Teleportation to Happen with A Specific Message.
Suppose
I Teleport the Player with the Parameter “Hello”
and when the player joins in the other game i can print the parameter which is “Hello”.
local GamePlace = tpService:ReserveServer(GameId)
tpService:TeleportToPrivateServer(GameId, GamePlace, array, "Hello") -- My Message
game.Players.PlayerAdded:Connect(function(Player,Message)
print(Message) -- It Prints nil
end)
Please Help!