of     1   

MW119
#224196570Friday, August 25, 2017 5:07 AM GMT

I personally don't know Lua, and as I start college in a few days, I don't exactly have time to learn it. Despite that, I am in need of a script that allows for a player to have clicked a block and be teleported to location x. As far as I could find, on click teleports have been phased out or most of what I've found is inaccurate and does not work. The most of what I need is some way to teleport a player without having to step on a specific block or open a gui. Could anyone help me out?
ExplodeLikeAVolcano
#224196585Friday, August 25, 2017 5:08 AM GMT

Tutorial is on YouTube.
UltraSkiMask
#224196638Friday, August 25, 2017 5:10 AM GMT

and when they do a connect function make the c in connect capitalized
coolestblue
#224196658Friday, August 25, 2017 5:11 AM GMT

put this inside of a brick (make sure there is also a ClickDetector inside of it too): local telebrick = script.Parent local position = Vector3.new(0,50,0) --replace the coordinates with the actual destination coordinates telebrick.ClickDetector.MouseClick:connect(function(plr) plr.Character.HumanoidRootPart.CFrame = CFrame.new(position) end) Try that Getting siggy with it
coolestblue
#224196739Friday, August 25, 2017 5:14 AM GMT

If you're too lazy to put a click detector in the brick, just put this script inside of it: local telebrick = script.Parent local position = Vector3.new(0,50,0) --replace the coordinates with the actual destination coordinates local Detector = Instance.new("ClickDetector") Detector.Parent = telebrick telebrick.ClickDetector.MouseClick:connect(function(plr) plr.Character.HumanoidRootPart.CFrame = CFrame.new(position) end) Getting siggy with it

    of     1