Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.PlayerAdded:Connect(function(player)
- player.Chatted:Connect(function(message)
- if message == "ZA WARUDO! TO KI WO TOMARE!" then
- script.Disabled = true
- local sound = Instance.new("Sound", workspace)
- sound.SoundId = "rbxassetid://4987994792"
- sound.Volume = 10
- sound:Play()
- wait(1)
- local color = Instance.new("ColorCorrectionEffect", game.Lighting)
- color.Saturation = -2
- for i, v in pairs(game.Players:GetPlayers()) do
- if not v.Name == player.Name then
- v.Character.HumanoidRootPart.Anchored = true
- end
- end
- wait(4)
- color:Destroy()
- sound:Destroy()
- for i, v in pairs(game.Players:GetPlayers()) do
- if not v.Name == player.Name then
- v.Character.HumanoidRootPart.Anchored = false
- end
- end
- script:Destroy()
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement