Advertisement
Marcsosa

Untitled

Mar 10th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. wait(2)
  2. local lp = game:service'Players'.LocalPlayer
  3. local Torso = lp.Character.Torso
  4. local part = Instance.new("Part")
  5. part.Parent = lp.Character
  6. part.CFrame = Torso.CFrame * CFrame.new(0,-0.8,-5)
  7. local SpecialMesh4 = Instance.new("SpecialMesh")
  8. SpecialMesh4.Parent = part
  9. SpecialMesh4.MeshId = "http://www.roblox.com/asset/?id=112335925"
  10. SpecialMesh4.Scale = Vector3.new(3, 3, 3)
  11. SpecialMesh4.TextureId = "http://www.roblox.com/asset/?id=112335881"
  12. SpecialMesh4.MeshType = Enum.MeshType.FileMesh
  13. a = Instance.new("Sound",workspace)
  14. a.SoundId = "rbxassetid://1340405157"
  15. a.Name = "spaghet"
  16. a.TimePosition = 2
  17. a.Volume = math.huge
  18. a.Looped = false
  19. a:Play()
  20.  
  21. for i,v in pairs(Torso.Parent:GetChildren()) do
  22. if v:IsA("Part") then
  23. v.Anchored = true
  24. end
  25. end
  26. local Leftthing = lp.Character:FindFirstChild("Left Arm")
  27. local Rightthing= lp.Character:FindFirstChild("Right Arm")
  28. Leftthing.CFrame = Leftthing.CFrame * CFrame.new(0,0.75,-0.25)
  29. Rightthing.CFrame = Rightthing.CFrame * CFrame.new(0,0.75,-0.25)
  30. Leftthing.Rotation = Vector3.new(45,0,0)
  31. Rightthing.Rotation = Vector3.new(45,0,0)
  32. wait(0.2)
  33. Leftthing.Rotation = Vector3.new(90,0,0)
  34. Rightthing.Rotation = Vector3.new(90,0,0)
  35. wait(0.2)
  36. Leftthing.Rotation = Vector3.new(45,0,0)
  37. Rightthing.Rotation = Vector3.new(45,0,0)
  38. wait(0.2)
  39. Leftthing.Rotation = Vector3.new(90,0,0)
  40. Rightthing.Rotation = Vector3.new(90,0,0)
  41. wait(0.2)
  42. Leftthing.Rotation = Vector3.new(135,0,0)
  43. Rightthing.Rotation = Vector3.new(135,0,0)
  44. wait(2)
  45. lp.Character.Head.Anchored = false
  46. wait(0.2)
  47. g = Instance.new("Explosion")
  48. g.Parent = workspace
  49. g.Position = lp.Character.Head.Position
  50. g.BlastRadius = 200
  51. g.BlastPressure = math.huge
  52.  
  53. Instance.new("ForceField", Character)
  54.  
  55.  
  56. char.Humanoid.MaxHealth = math.huge
  57. wait()
  58. char.Humanoid.Health = math.huge
  59.  
  60. mouse = plr:GetMouse()
  61. --This has to be a local script.
  62. function onClicked()
  63. local x = Instance.new("Explosion", Workspace)--This means create new explosion in the workspace.
  64. x.Position = mouse.Hit.p
  65. x.BlastRadius = 50
  66. x.BlastPressure = math.huge
  67. end
  68. mouse.Button1Down:connect(onClicked)
  69. -- how to use? Just Left Click it gonna explode on u click XD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement