I want to make a teleport between places button. Please help me
You would want a few things. Im assuming you know basic GUI scripting.
Local teleButton = script.parent -- the button the local script has to be in. Local placeOne = -- the brick where you want them to teleport and it's position. Local torso = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Torso") -- gets the torso of the player Local canTele = true teleButton.MouseButton1Click:connect(function() if can tele and torso then wait(0.2) torso.Cframe = palceOne.Cframe end)
This script may or may not work, I made it on the spot, so try it at least.
This script must be inside a textButton or imageButton also use a local script.