Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i make a Stage teleport for my Obby?

Asked by 10 years ago

I have just started my stage obby, i just want the Vip to Teleport you to a Stage

3 answers

Log in to vote
0
Answered by
TomsGames 225 Moderation Voter
10 years ago

You'll want a script to check if the user is a VIP, that could be server script checking for a gamepass or local script checking for a shirt.

If this returns true, teleport them to the desired position :)

Ad
Log in to vote
0
Answered by 10 years ago

You can get teleport pads from the catalog and use them.

Log in to vote
0
Answered by 10 years ago

Put a VIP door with the gamepass/shirt id in it. Then have a brick with a lava script in it and this script:

Stage = 3 --This is the no. you change to teleport

script.Parent.Touched:connect(function(part) h = part.Parent:FindFirstChild("Humanoid") if h then b = game.Players:playerFromCharacter(part.Parent) if b then b.leaderstats.Stage.Value = Stage end end end)

Answer this question