I have just started my stage obby, i just want the Vip to Teleport you to a Stage
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 :)
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)