Hi, So i want everyone to teleport in the same place after a 10 seconds timer in fornite creative. I mean i have done something and all players sometimes spawn in the same places and in some rounds only one is teleported. I use player reference, player spawn, teleport, timer and some other things and i also want them to already spawn with random loot and i have placed some item granters
1 Like
IF SOMEONE CAN ADD ME ON DISCORRD: v1ctorrr
Not sure what you setup is, but to teleport all players in a particular location, you can use a teleporter_device
that you place in your island, and make a device that references it.
You can get all current players via Player:GetPlayspace().GetPlayers()
and iterate through them like this:
your_device := class(creative_device):
@editable
MyTeleporter:teleporter_device := teleporter_device {}
TeleportAllPlayers<public>():void=
for(Player:GetPlayspace().GetPlayers()):
MyTeleporter.Teleport(Player)