Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- game.Players.LocalPlayer.Character.Head.Mesh:destroy()
- function doo(limb, pos)
- limb:BreakJoints()
- local velocity = Instance.new("RocketPropulsion", limb)
- velocity.CartoonFactor = 0
- velocity.MaxSpeed = 30
- velocity.MaxThrust = 9999
- velocity.MaxTorque = Vector3.new(math.huge,math.huge,math.huge)
- velocity.Target = game.Players.LocalPlayer.Character.Torso
- velocity.TargetOffset = pos
- velocity:fire()
- local b = Instance.new("BodyGyro", limb)
- end
- doo(game.Players.LocalPlayer.Character["Left Arm"], Vector3.new(-0.5,-2,-1))
- doo(game.Players.LocalPlayer.Character["Right Arm"], Vector3.new(0.5,-2,-1))
- doo(game.Players.LocalPlayer.Character["Left Leg"], Vector3.new(-0.5,-2,1))
- doo(game.Players.LocalPlayer.Character["Right Leg"], Vector3.new(0.5,-2,1))
- ragdolld = false
- mouse = game.Players.LocalPlayer:GetMouse()
- function ragdoll(key)
- key = key:lower()
- if key == "e" and not ragdolld then
- ragdolld = true
- game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"SSSSSSSSSSSSSSSSSS!","Red")
- wait()
- Instance.new("ForceField", game.Players.LocalPlayer.Character)
- lol = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
- lol.SoundId = "rbxassetid://249888532"
- lol:Play()
- part = Instance.new("Part", game.Players.LocalPlayer.Character.Head)
- part.Position = game.Players.LocalPlayer.Character.Head.Position + Vector3.new(0,178,0)
- part.Anchored = true
- part.CanCollide = false
- part.BrickColor = BrickColor.new("Really black")
- mesh = Instance.new("SpecialMesh", part)
- mesh.MeshId = "http://roblox.com/asset/?id=2251534"
- mesh.Scale = Vector3.new(1,1,1)
- part.Rotation = Vector3.new(-90,0,0)
- boomb = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
- boomb.SoundId = "rbxassetid://258057783"
- for i = 1,178 do
- wait(0.01)
- part.Position = part.Position - Vector3.new(0,1,0)
- end
- boomb.Volume = 25
- boomb:Play()
- game.Lighting.FogColor = Color3.new(255,255,255)
- game.Lighting.FogEnd = 1
- bomb = Instance.new("Explosion", game.Players.LocalPlayer.Character.Head)
- bomb.Position = part.Position
- bomb.BlastRadius = 250
- bomb.BlastPressure = 3000000
- part.Transparency = 1
- boom = Instance.new("Part", game.Players.LocalPlayer.Character.Head)
- boom.Anchored = true
- boom.CanCollide = false
- boom.Position = part.Position
- mesh1 = Instance.new("SpecialMesh", boom)
- mesh1.MeshId = "http://www.roblox.com/asset/?id=3270017"
- boom.BrickColor = BrickColor.new("Bright yellow")
- boom.Rotation = Vector3.new(90,0,0)
- boom.Transparency = 0.5
- lol.Volume = 32
- for i = 1,750 do
- wait()
- game.Lighting.FogEnd = game.Lighting.FogEnd + 2000
- game.Workspace.CurrentCamera.FieldOfView = math.random(60,80)
- boom.Rotation = boom.Rotation + Vector3.new(0,0,1)
- mesh1.Scale = mesh1.Scale - Vector3.new(3,3,4.5)
- end
- game.Lighting.FogEnd = 100000000
- part:destroy()
- lol:destroy()
- boom:destroy()
- game.Workspace.CurrentCamera.FieldOfView = 70
- end
- end
- mouse.KeyDown:connect(ragdoll)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement