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

I got issues trying to teleport all players to one part?

Asked by 6 years ago

I previously tried to use this but it doesn't work

1for i,v in pairs(game.Players:GetPlayers()) do
2    v.Character.HumanoidRootPart.CFrame = CFrame.new(workspace.tp)
3end

I need to be able to teleport all players to a map once its loaded and back when the map is unloaded/round is over but my teleport script doesnt seem two work

01while true do
02        local map = math.random(1, 4)
03                if map == 1 then
04                    local gamespawn = game.Lighting.Map1.SpawnLocation
05                    local m = Instance.new("Message", game.Workspace)
06                    m.Text = "map1test"
07                    wait(3)
08                    ------------------------------
09--                  Code where all players get teleported into map
10                    ------------------------------
11                    m:Destroy()
12                    local Map1copy = game.Lighting.Map1:clone()
13                    Map1copy.Parent = game.Workspace
14                    wait(4)
15                    ------------------------------
View all 65 lines...

1 answer

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

You didnt set each player's HumanoidRootPart CFrame to your tp part CFrame, so it'll error and :clone() and the parent parameter of Instance.new() is deprecated. Instead set the parent last of the Instance and use :Clone().

1for _,v in pairs(game.Players:GetPlayers()) do
2    v.Character.HumanoidRootPart.CFrame = CFrame.new(workspace.tp.CFrame.Position)
3end
Ad

Answer this question