I have a Teleport Gui, but It isn't working. I think the reason is that I didn't locate the Gui correctly in the Lighting but I'm not 100% sure. Please help!
function Click() script.Parent.Parent.Parent.Parent.Character.Torso.CFrame = CFrame.new(0,0,0) end script.Parent.MouseButton1Down:connect(Click)
You didn't locate the GUI in Lighting? Puzzled... If it is in Lighting, have a script Parent it to their PlayerGui. Make it a local script and:
script.Parent.MouseButton1Down:connect(function() game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(0,0,0) end)