Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --StickMasterLock0909
- --Take the brick provided and rename it to the stage number to make people spawn there.
- function oa(object)
- local player = game.Players:playerFromCharacter(object)
- if player ~= nil then
- local ls = player.leaderstats
- local sl = game.Workspace:FindFirstChild(ls.Stage.Value)
- print("gah")
- object.Torso.CFrame = object.Torso.CFrame + Vector3.new(0,3,0)
- wait()
- object.Torso.CFrame = sl.CFrame + Vector3.new(0,3,0)
- end end
- function oe(object)
- if object.className == "Player" then
- local ack = Instance.new("IntValue")
- ack.Name = "leaderstats"
- local ack2 = Instance.new("IntValue")
- ack2.Name = "Stage"
- ack2.Value = 1
- ack2.Parent = ack
- ack.Parent = object
- end end
- game.Players.ChildAdded:connect(oe)
- game.Workspace.ChildAdded:connect(oa)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement