Do you think this teleport script is going to work or is it valid?
Hi I was making a racing game on ROBLOX. Is the following teleport script valid or at least work? I was not too sure if it was going to work? It needs to be R6 and R15 capable.
Script:
01 | function teleportPlayers(target) |
02 | for _, player in pairs (game.Players:GetChildren()) do |
03 | while player.Character = = nil do |
06 | local character = player.Character |
07 | local torso = character:WaitForChild( "UpperTorso" ) or ( "Torso" ) |
08 | torso.CFrame = target.CFrame |