Advertisement
DenisPitu06_YT

ZA WARUDO! TO KI WO TOMARE!

May 16th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(player)
  2. player.Chatted:Connect(function(message)
  3. if message == "ZA WARUDO! TO KI WO TOMARE!" then
  4. script.Disabled = true
  5. local sound = Instance.new("Sound", workspace)
  6. sound.SoundId = "rbxassetid://4987994792"
  7. sound.Volume = 10
  8. sound:Play()
  9. wait(1)
  10. local color = Instance.new("ColorCorrectionEffect", game.Lighting)
  11. color.Saturation = -2
  12. for i, v in pairs(game.Players:GetPlayers()) do
  13. if not v.Name == player.Name then
  14. v.Character.HumanoidRootPart.Anchored = true
  15. end
  16. end
  17. wait(4)
  18. color:Destroy()
  19. sound:Destroy()
  20. for i, v in pairs(game.Players:GetPlayers()) do
  21. if not v.Name == player.Name then
  22. v.Character.HumanoidRootPart.Anchored = false
  23. end
  24. end
  25. script:Destroy()
  26. end
  27. end)
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement