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 |
05 | x = x + math.random(- 1 , 1 ) |
06 | z = z + math.random(- 1 , 1 ) |
07 | y = y + math.random( 2 , 3 ) |
09 | local cf = torso.CFrame |
14 | script.Parent.Enabled.Value = 0 |
15 | teleportto.Enabled.Value = 0 |
16 | torso.CFrame = CFrame.new(Vector 3. new(x,y,z), Vector 3. new(lx,ly,lz)) |
18 | script.Parent.Enabled.Value = 1 |
19 | teleportto.Enabled.Value = 1 |
21 | print ( "Could not find teleporter!" ) |
end
script.Parent.Touched:connect(onTouched)