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

Help on a teleporter?

Asked by 11 years ago

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:

01modelname="teler"
02 
03function onTouched(part)
04    if part.Parent ~= nil then
05    local h = part.Parent:findFirstChild("Humanoid")
06        if h~=nil then
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}
View all 45 lines...

Script 2: (LOCAL SCRIPT)

01s = script.Parent
02f = s.Frame
03 
04if s.Parent.Name ~= "Script" then
05    s.Town:TweenPosition(UDim2.new(0, 200, 0, 0), "Out", "Quad", 0.5)
06    for i=1, 50 do
07        f.BackgroundTransparency = f.BackgroundTransparency + 0.05
08        wait(0.01)
09    end
10    s.Town:TweenPosition(UDim2.new(0, 200, 0, -50), "Out", "Quad", 0.5)
11    wait(1.5)
12    s:Remove()
13end

1 answer

Log in to vote
2
Answered by 11 years ago

Im no expert to scripting... but try putting a wait for about 3 seconds before allowing the telleporters to telleport again. If this doesnt help, put a block with transparency 1 top of it.

Ad

Answer this question