I want to make a teleporting GUI that teleports me from a certain place to another (in-game) but I don't know how please tell me.
Create a button that teleports you and then use a script that teleports the player when they click the button like this:
player = script.Parent.Parent.Parent.Parent -- this is an example, you will have to define the player. button = script.Parent newplace = CFrame.new(0, 0, 0) -- where to teleport the,. function Clicked() if player.Character then player.Character.Torso.Anchored = true wait() player.Character.Torso.CFrame = newplace wait() player.Character.Torso.Anchored = false end end button.MouseButton1Click:connect(Clicked)
Can you please be more specific I don't know how to make a button and lime please help me I want it to a like I'm on brick1 I want to go to brick2 with GUI so please help me.
Like jav said, you need to have a basic understanding before you come here to ask your question. He gave you a correct and clear answer, if you don't understand it you should check out the wiki or some GUI tutorials.
Locked by AmericanStripes
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?