I am making an elevator that when you click on a TextButton in a GUI, it will teleport you to another part. I've tried salvaging scripts from teleport pads, etc, but they either teleport everyone or just don't work. Can someone please help?
Well, first you would make a local script in the text button. Then put this code into it.
char = game.Players.LocalPlayer.Character destination = game.Workspace.ANYBRICKYOUWANTHERE function teleporter() char.Torso.Position = destination.Position + Vector3.new(0,5,0) script.Parent.MouseButton1Click:connect(teleporter)
This is not a request site. Check the ROBLOX wiki, and if you have errors with your script, then you can repost and we will help you.