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

How do i Make a Vip to Teleport you to a Curten Stage?

Asked by 10 years ago

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

1 answer

Log in to vote
0
Answered by 10 years ago
Stage = 3

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)

Ok so have a VIP door and a button inside the door. put this in the part and change where it says "3" to whatever stage you want them to tp to.

0
Thanks! This Helps ALOT :) CorvetteLegend 0 — 10y
0
No problem mate :P NinjoOnline 1146 — 10y
Ad

Answer this question