Player won't teleport after he joins?
yes i know this is a free model teleport but i added some stuff to it because I want the player to teleport after 11 seconds once they join but the player doesnt teleport (it only teleports them if they have a certain level yes i have tested this)
~~~~~~~~~~~~~~~~~
modelname = "teleporter1b"
1 | level = game.Players.LocalPlayer.leaderstats.Level |
function PlayerAdded(part)
01 | if level.Value = = 1 then |
03 | if part.Parent ~ = nil then |
04 | local h = part.Parent:findFirstChild( "Humanoid" ) |
06 | local teleportfrom = script.Parent.Enabled.Value |
07 | if teleportfrom~ = 0 then |
11 | local teleportto = script.Parent.Parent:findFirstChild(modelname) |
12 | if teleportto~ = nil then |
13 | local torso = h.Parent.Torso |
14 | local location = { teleportto.Position } |
17 | local x = location [ i ] .x |
18 | local y = location [ i ] .y |
19 | local z = location [ i ] .z |
21 | x = x + math.random(- 1 , 1 ) |
22 | z = z + math.random(- 1 , 1 ) |
23 | y = y + math.random( 2 , 3 ) |
25 | local cf = torso.CFrame |
30 | script.Parent.Enabled.Value = 0 |
31 | teleportto.Enabled.Value = 0 |
32 | torso.CFrame = CFrame.new(Vector 3. new(x,y,z), Vector 3. new(lx,ly,lz)) |
34 | script.Parent.Enabled.Value = 1 |
35 | teleportto.Enabled.Value = 1 |
37 | print ( "Could not find teleporter!" ) |
end~~~~~~~~~~~~~~~~~