In lots of games you can spectate people. And In my game "Cake-tastrophe" I would like the person to spectate. I also need a scripter for the game. That would be cool. Thank you!
local part=PARTLOCATIONHERE --Change to where the part is where you want it to tp to local d=false --Debounce script.Parent.Touched:connect(function(part) --Calls event when touched if d then return end --Checks debounce d=true --Debounce if part.Parent:FindFirstChild("Humanoid") then --Finds a Humanoid if there is one part.Parent:MoveTo(part.Position) --tps character to part end d=false --Debounce end)
If you want it to teleport when a player clicks it then edit the code
Closed as Not Constructive by Azarth and User#2
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?