Game Modding | Call of Duty: Black Ops 3 | Scripting
blink-420:
How would I go about teleporting all players to four structs once a trigger is activated? I've tried using SetOrigin for the player but that wouldn't teleport every player in the match. any help appreciated!!
Spiki:
foreach(player in GetPlayers())
player setOrigin((x,y,z))
blink-420:
foreach(player in GetPlayers())
player setOrigin((x,y,z))