of     1   

a3go
#223905618Saturday, August 19, 2017 4:36 AM GMT

can somebody help me with teleporting a player to a random location on the map? currently im teleporting to the same place
supernavo
#223906624Saturday, August 19, 2017 5:04 AM GMT

I made alot of assumptions since your request was so vague. Might wanna tell me how your teleportation locations are laid out. spawns = game.Workspace.Map.spawns:GetChildren()--idk,just put all your parts in one group number = math.random(1,#spawns) game.Workspace.Player.Torso.CFrame = game.Workspace.map.spawns[number].CFrame ^ this only works if you name your teleport parts a number. Honestly I had i hard time figuring out the random part, this is my best solution.

    of     1