(warning im not good at spelling)the teleporter that im trying to make is a button teleporter that req to get to the other place first without bange
You can teleport a player when they click an button like so: The script is saying: when a player clicks a button, get their player object from their character and teleport the player to the specified place. Make sure you have a click detector object inside of the button part and this script inside of the button:
local TeleportService = game:GetService("TeleportService") placeID = 408502340 clickDetector = script.Parent.ClickDetector --location of the click detector --when the button is clicked, teleport player clickDetector.MouseClick:Connect(function(playerWhoClicked) local player = playerWhoClicked if player then TeleportService:Teleport(placeID, player) end end