Advertisement
DrakerMaker

Andys Coming!

May 26th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. local sound = Instance.new("Hint")
  2. sound.Parent = workspace
  3. sound.Text = "Andys coming upstairs!"
  4. sound.Name = "ANDY"
  5. for i, player in ipairs(game.Players:GetPlayers()) do
  6. if player.Character then
  7. local hum = player.Character:FindFirstChild('Humanoid')
  8. if hum then
  9. hum.WalkSpeed = 0
  10. hum.JumpPower = 0
  11. wait(3)
  12. hum.WalkSpeed = 16
  13. hum.JumpPower = 50
  14. sound.Parent = nil
  15. end
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement