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

Telport to spawn?(SOLVED ISSUE)

Asked by 5 years ago
Edited 5 years ago

Hello! i am trying to make an game.. I have all the stuff i need accept for one.

what i want to make it program. is when an player first loads into the game, they have touched an part.. but it instant Telports, instead of that i want the player to wait the time i tell the script too. I have tryed to add an wait() but it dosent work! Heres the script

modelname="tele2"

function onTouched(part) if part.Parent ~= nil then local h = part.Parent:findFirstChild("Humanoid") if h~=nil then local teleportfrom=script.Parent.Enabled.Value if teleportfrom~=0 then if h==humanoid then return end local teleportto=script.Parent.Parent:findFirstChild(modelname) if teleportto~=nil then local torso = h.Parent.Torso local location = {teleportto.Position} local i = 1

                local x = location[i].x
                local y = location[i].y
                local z = location[i].z

                x = x + math.random(-1, 1)
                z = z + math.random(-1, 1)
                y = y + math.random(2, 3)

                local cf = torso.CFrame
                local lx = 0
                local ly = y
                local lz = 0

                script.Parent.Enabled.Value=0
                teleportto.Enabled.Value=0
                torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz))
                wait(2)
                script.Parent.Enabled.Value=1
                teleportto.Enabled.Value=1
            else
                print("Could not find teleporter!")
            end
        end
    end
end

end

script.Parent.Touched:connect(onTouched)

Is there an specific script please also tell me.

0
It is the script. gabriwolf 0 — 5y
1
Yes! Creepysuperninjaman 1 — 5y

Answer this question