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

Player won't teleport after he joins?

Asked by 8 years ago
Edited 8 years ago

yes this is the script from the teleporter but i made some changes can you help me see what's wrong no errors... (btw its pulling from a datastore from the last game )

01------------------------------------
02modelname = "teleporter1b"
03------------------------------------
04    level = game.Players.LocalPlayer.leaderstats.Level
05function PlayerAdded(part)
06 
07    if level.Value == 1 then
08 
09        if part.Parent ~= nil then
10    local h = part.Parent:findFirstChild("Humanoid")
11        if h~=nil then
12            local teleportfrom=script.Parent.Enabled.Value
13            if teleportfrom~=0 then
14                if h == humanoid then
15                return
View all 50 lines...
0
@w no it is not arrowman888 69 — 8y

2 answers

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

I can solve

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

01                local x = location[i].x
02                local y = location[i].y
03                local z = location[i].z
04 
05                x = x + math.random(-1, 1)
06                z = z + math.random(-1, 1)
07                y = y + math.random(2, 3)
08 
09                local cf = torso.CFrame
10                local lx = 0
11                local ly = y
12                local lz = 0
13 
14                script.Parent.Enabled.Value=0
15                teleportto.Enabled.Value=0
View all 25 lines...

end

script.Parent.Touched:connect(onTouched)

0
You might want to re-format it so it's inside a code block (All of it, not just a section). TheHospitalDev 1134 — 8y
0
he litteraly put the original script arrowman888 69 — 8y
Ad
Log in to vote
-1
Answered by 8 years ago

Wiabo

0
And what's the point of this? TheHospitalDev 1134 — 8y

Answer this question