of     1   

excellentAnarchy
#141050120Monday, July 21, 2014 12:35 PM GMT

function onClicked(plr) if plr.PlayerGui.Value.Value == 4 then plr.PlayerGui.Value.Value = 0 local D = plr.PlayerGui.DValue local F = plr.PlayerGui.FValue local G = plr.PlayerGui.GValue local H = plr.PlayerGui.HValue D.Value = false F.Value = false G.Value = false H.Value = false if plr.Character:FindFirstChild("Torso") then plr.Character.Torso.CFrame = CFrame.new(script.Parent.TelePosition.Value + Vector3.new(0, 0.5, 0)) else print'already has' end end end script.Parent.ClickDetector.MouseClick:connect(onClicked) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - No output.
Tom_z
#141050695Monday, July 21, 2014 12:49 PM GMT

~~ Not the best scripter ~~ function onClicked(plr) if plr.PlayerGui.Value.Value == 4 then plr.PlayerGui.Value.Value = 0 local D = plr.PlayerGui.DValue local F = plr.PlayerGui.FValue local G = plr.PlayerGui.GValue local H = plr.PlayerGui.HValue D.Value = false F.Value = false G.Value = false H.Value = false if plr.Character:FindFirstChild("Torso") then plr.Character.Torso.CFrame = CFrame.new(script.Parent.TelePosition.Value) wait() plr.Character.Torso.CFrame = CFrame.new((plr.Character.Torso.Position.X + 0), (plr.Character.Torso.Position.Y + 0.5),(plr.Character.Torso.Position.Z + 0)) else print'already has' end end end script.Parent.ClickDetector.MouseClick:connect(onClicked)
Tom_z
#141050815Monday, July 21, 2014 12:52 PM GMT

@My Previous Post I meant ~~ I'm not the best scripter ~~
excellentAnarchy
#141051021Monday, July 21, 2014 12:57 PM GMT

OMG, I'm so stupid. The script works correctly - I just set the script to be Disabled.

    of     1