Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Do you think this teleport script is going to work or is it valid?

Asked by 6 years ago

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:

function teleportPlayers(target)
    for _, player in pairs(game.Players:GetChildren())do
        while player.Character == nil do
            wait()
        end
        local character = player.Character
        local torso = character:WaitForChild("UpperTorso")or("Torso")
        torso.CFrame = target.CFrame
    end
end
0
no hiimgoodpack 2009 — 6y

2 answers

Log in to vote
0
Answered by
YTGonzo 20
6 years ago

**This script should work fine. **

Ad
Log in to vote
0
Answered by 6 years ago

don't use torsos trust me it's a lot better to use HumanoidRootPart because everything is attached to it so it's better to use that.

Answer this question