Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local s = Instance.new("Sound", workspace)
- s.SoundId = "http://www.roblox.com/asset?id=130776150"
- s.Looped = true
- s.Volume = 20
- local peeps = game.Players:GetChildren()
- local partfix = game.Workspace:GetChildren()
- for i,v in pairs(peeps) do
- s:Play()
- wait(5)
- local e = Instance.new("Explosion", v.Character.Torso)
- e.Position = v.Character.Torso.Position
- e.BlastPressure = 3782123
- wait(2)
- s:Stop()
- end
- for i,v in pairs(partfix) do
- if v.Name == "Part" then
- wait(5)
- local c = Instance.new("Explosion", v)
- c.Position = v.Position
- c.BlastPressure = 3782123
- v.Anchored = false
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement