Advertisement
Marcsosa

Untitled

Mar 10th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 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=443226811"
  10. SpecialMesh4.Scale = Vector3.new(3, 3, 3)
  11. SpecialMesh4.MeshType = Enum.MeshType.FileMesh
  12. a = Instance.new("Sound",workspace)
  13. a.SoundId = "rbxassetid://1340405157"
  14. a.Name = "spaghet"
  15. a.TimePosition = 3
  16. a.Volume = 58359
  17. a.Looped = false
  18. a:Play()
  19.  
  20. for i,v in pairs(Torso.Parent:GetChildren()) do
  21. if v:IsA("Part") then
  22. v.Anchored = true
  23. end
  24. end
  25. local Leftthing = lp.Character:FindFirstChild("Left Arm")
  26. local Rightthing= lp.Character:FindFirstChild("Right Arm")
  27. Leftthing.CFrame = Leftthing.CFrame * CFrame.new(0,0.75,-0.25)
  28. Rightthing.CFrame = Rightthing.CFrame * CFrame.new(0,0.75,-0.25)
  29. Leftthing.Rotation = Vector3.new(45,0,0)
  30. Rightthing.Rotation = Vector3.new(45,0,0)
  31. wait(0.5)
  32. Leftthing.Rotation = Vector3.new(90,0,0)
  33. Rightthing.Rotation = Vector3.new(90,0,0)
  34. wait(0.5)
  35. Leftthing.Rotation = Vector3.new(45,0,0)
  36. Rightthing.Rotation = Vector3.new(45,0,0)
  37. wait(0.5)
  38. Leftthing.Rotation = Vector3.new(90,0,0)
  39. Rightthing.Rotation = Vector3.new(90,0,0)
  40. wait(0.5)
  41. Leftthing.Rotation = Vector3.new(135,0,0)
  42. Rightthing.Rotation = Vector3.new(135,0,0)
  43. wait(2)
  44. lp.Character.Head.Anchored = false
  45. wait(0.1)
  46. g = Instance.new("Explosion")
  47. g.Parent = workspace
  48. g.Position = lp.Character.Head.Position
  49. g.BlastRadius = 5
  50. g.BlastPressure = 1000000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement