Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local sound = Instance.new("Hint")
- sound.Parent = workspace
- sound.Text = "Andys coming upstairs!"
- sound.Name = "ANDY"
- for i, player in ipairs(game.Players:GetPlayers()) do
- if player.Character then
- local hum = player.Character:FindFirstChild('Humanoid')
- if hum then
- hum.WalkSpeed = 0
- hum.JumpPower = 0
- wait(3)
- hum.WalkSpeed = 16
- hum.JumpPower = 50
- sound.Parent = nil
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement