Help on a teleporter?
When you step on the Red teleporter it goes to the Blue teleporter then it keeps going back and forth not letting you get off. Please help
Script 1:
03 | function onTouched(part) |
04 | if part.Parent ~ = nil then |
05 | local h = part.Parent:findFirstChild( "Humanoid" ) |
07 | local teleportfrom = script.Parent.Enabled.Value |
08 | if teleportfrom~ = 0 then |
09 | local teleportto = script.Parent.Parent:findFirstChild(modelname) |
10 | if teleportto~ = nil then |
11 | local gui = script.ScreenGui:Clone() |
12 | local pname = game.Players:GetPlayerFromCharacter(h.Parent) |
13 | gui.Parent = pname.PlayerGui |
14 | local torso = h.Parent.Torso |
15 | local location = { teleportto.Position } |
18 | local x = location [ i ] .x |
19 | local y = location [ i ] .y |
20 | local z = location [ i ] .z |
22 | x = x + math.random(- 1 , 1 ) |
23 | z = z + math.random(- 1 , 1 ) |
24 | y = y + math.random( 2 , 3 ) |
26 | local cf = torso.CFrame |
31 | script.Parent.Enabled.Value = 0 |
32 | teleportto.Enabled.Value = 0 |
33 | torso.CFrame = CFrame.new(Vector 3. new(x,y,z), Vector 3. new(lx,ly,lz)) |
35 | script.Parent.Enabled.Value = 1 |
36 | teleportto.Enabled.Value = 1 |
38 | print ( "Could not find teleporter!" ) |
45 | script.Parent.Touched:connect(onTouched) |
Script 2: (LOCAL SCRIPT)
04 | if s.Parent.Name ~ = "Script" then |
05 | s.Town:TweenPosition(UDim 2. new( 0 , 200 , 0 , 0 ), "Out" , "Quad" , 0.5 ) |
07 | f.BackgroundTransparency = f.BackgroundTransparency + 0.05 |
10 | s.Town:TweenPosition(UDim 2. new( 0 , 200 , 0 , - 50 ), "Out" , "Quad" , 0.5 ) |