Advertisement
Guest User

Donkop 12322123

a guest
Feb 27th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1.  
  2. p = game.Workspace.speedysuperepicman1
  3. for _, child in pairs(p:GetChildren()) do
  4. if child.ClassName == 'Accessory' then
  5. child:Destroy()
  6. end
  7. end
  8. s = Instance.new("Sound", p)
  9. s.SoundId = "rbxassetid://287660316"
  10. s.Looped = true
  11. s:Play()
  12. a = Instance.new("Accessory",p.Head)
  13. a.AttachmentRight = Vector3.new(0,0,1)
  14. a.AttachmentForward = Vector3.new(0,0,1)
  15. a.AttachmentPos = Vector3.new(0,1.8,0)
  16. h = Instance.new("Part",a)
  17. h.Name = "Handle"
  18. m = Instance.new("SpecialMesh",h)
  19. m.MeshType = "FileMesh"
  20. m.MeshId = "rbxassetid://439112524"
  21. m.TextureId = "rbxassetid://439112533"
  22. m.Scale = Vector3.new(50.369, 4.424, 20.591)
  23. a.Parent = p
  24. a2 = Instance.new("Accessory",p.Head)
  25. h2 = Instance.new("Part", a2)
  26. h2.Name = "Handle"
  27. h2.Size = Vector3.new(18, 1, 30)
  28. h2.Touched:connect(function(hit)
  29. if hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid") then
  30. hit.Parent.Humanoid.Health = 0
  31. Aud = Instance.new("Sound", hit)
  32. Aud.SoundId = "rbxassetid://138081512"
  33. Aud.TimePosition = 4
  34. Aud.Volume = 100
  35. Aud.PlayOnRemove = true
  36. Aud:Destroy()
  37. end
  38. end)
  39. h2.Transparency = 1
  40. a2.AttachmentPos = Vector3.new(0,2,0)
  41. a2.Parent = p
  42. p.Humanoid.WalkSpeed = 80
  43. p.Torso.Transparency = 1
  44. p.Head.Transparency = 1
  45. p["Right Arm"].Transparency = 1
  46. p["Right Leg"].Transparency = 1
  47. p["Left Leg"].Transparency = 1
  48. p["Left Arm"].Transparency = 1
  49. p.Head.face:Destroy()
  50. p.Humanoid.JumpPower = 250
  51. a3 = Instance.new("Accessory",p.Head)
  52. a3.AttachmentPos = Vector3.new(0,-0.5,0)
  53. h3 = Instance.new("Part", a3)
  54. h3.Name = "Handle"
  55. h3.Transparency = 1
  56. d1 = Instance.new("Part",h3)
  57. d1.Transparency = 1
  58. d1.Size = Vector3.new(4,1,3)
  59. d1.TopSurface = "Motor"
  60. d1.TopSurfaceInput = "Constant"
  61. d1.TopParamB = 0.5
  62. d2 = Instance.new("Part", h3)
  63. d2.Transparency = 1
  64. d2.Size = Vector3.new (10,1,1)
  65. _X = d2.Position.X
  66. _Y = d2.Position.Y
  67. _Z = d2.Position.Z
  68. _X =- 4
  69. d2.Position = Vector3.new(_X,_Y,_Z)
  70. e = Instance.new("ParticleEmitter",d2)
  71. e.Texture = "rbxassetid://346005703"
  72. e.Speed = NumberRange.new(50,50)
  73. e.Lifetime = NumberRange.new(10,10)
  74. e.Rate = 250
  75. a3.Parent = p
  76.  
  77. p.Humanoid.Animator:Destroy()
  78. p.Animate:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement