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

Player won't teleport after he joins?

Asked by 8 years ago

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"

1level = game.Players.LocalPlayer.leaderstats.Level

function PlayerAdded(part)

01if level.Value == 1 then
02    wait(11)
03    if part.Parent ~= nil then
04local h = part.Parent:findFirstChild("Humanoid")
05    if h~=nil then
06        local teleportfrom = script.Parent.Enabled.Value
07        if teleportfrom~=0 then
08            if h == humanoid then
09            return
10            end
11            local teleportto=script.Parent.Parent:findFirstChild(modelname)
12            if teleportto~=nil then
13                local torso = h.Parent.Torso
14                local location = {teleportto.Position}
15                local i = 1
View all 42 lines...

end~~~~~~~~~~~~~~~~~

1 answer

Log in to vote
0
Answered by 8 years ago
Edited 8 years ago

You should add the

1Wait(11)

between like 31 and like 32.

Ad

Answer this question