Advertisement
DarkScriptZEditors

Untitled

Jan 23rd, 2019
474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. warn("original by snyfor EDITED BY SincereProdeadZ")
  2. lp = owner --ok this works but only on void sb
  3. char = lp.Character
  4. hum = char:FindFirstChildOfClass("Humanoid")
  5. bp = lp.Backpack
  6. head = char.Head
  7. tool = Instance.new("Tool",bp)
  8. tool.Name = "Sprite Cranberry"
  9. tool.CanBeDropped = false
  10. handle = Instance.new("Part",tool)
  11. handle.Name = "Handle"
  12. handle.Size = Vector3.new(1,1,1)
  13. mesh = Instance.new("SpecialMesh",handle)
  14. mesh.MeshType = Enum.MeshType.FileMesh
  15. mesh.MeshId = "http://www.roblox.com/asset/?id=10470609"
  16. mesh.Scale = Vector3.new(1.2,1.2,1.2)
  17. decal = Instance.new("Decal",handle)
  18. decal.Face = Enum.NormalId.Right
  19. decal.Texture = "http://www.roblox.com/asset/?id=2605745951"
  20. explosion = Instance.new("Sound",head)
  21. explosion.SoundId = "http://www.roblox.com/asset/?id=165969964"
  22. explosion.Volume = 5
  23. music = Instance.new("Sound",head)
  24. music.Volume = 5
  25. music.SoundId = "http://www.roblox.com/asset/?id=1258675588"
  26. slurp = Instance.new("Sound",head)
  27. slurp.Volume = 5
  28. slurp.SoundId = "http://www.roblox.com/asset/?id=10722059"
  29. th = Instance.new("Sound",head)
  30. th.SoundId = "http://www.roblox.com/asset/?id=251309043"
  31. th.Volume = 5
  32. hit = Instance.new("Sound",handle)
  33. hit.SoundId = "http://www.roblox.com/asset/?id=250697400"
  34. hit.Volume = 5
  35. debounce = false
  36. tool.Activated:connect(function()
  37. if debounce == false then
  38. debounce = true
  39. hum.WalkSpeed = 0
  40. slurp:Play()
  41. tool.GripForward = Vector3.new(0,-.759,-.651)
  42. tool.GripPos = Vector3.new(1.5,-.5,.3)
  43. tool.GripRight = Vector3.new(1,0,0)
  44. tool.GripUp = Vector3.new(0,.651,-.759)
  45. wait(slurp.TimeLength)
  46. wait(1)
  47. handle.Parent = workspace
  48. handle.CanCollide = true
  49. hit:Play()
  50. wait(1)
  51. gm = head:FindFirstChildOfClass("SpecialMesh")
  52. th:Play()
  53. for i=1, 10 do
  54. wait(0.05)
  55. gm.Scale = gm.Scale - Vector3.new(0.1,0.1,0.1)
  56. end
  57. wait(2)
  58. hum.WalkSpeed = 25
  59. music:Play()
  60. pr = Instance.new("ParticleEmitter",head)
  61. pr.Lifetime = NumberRange.new(5)
  62. pr.Speed = NumberRange.new(10)
  63. pr.Texture = "http://www.roblox.com/asset/?id=118129065"
  64. pr.Color = ColorSequence.new(Color3.new(1,0,0))
  65. pr.Acceleration = Vector3.new(0,-5,0)
  66. pr.Rate = 20
  67. pr.SpreadAngle = Vector2.new(10,10)
  68. pg = Instance.new("ParticleEmitter",head)
  69. pg.Lifetime = NumberRange.new(5)
  70. pg.Speed = NumberRange.new(10)
  71. pg.Texture = "http://www.roblox.com/asset/?id=118129065"
  72. pg.Color = ColorSequence.new(Color3.new(0,1,0))
  73. pg.Acceleration = Vector3.new(0,-5,0)
  74. pg.Rate = 20
  75. pg.SpreadAngle = Vector2.new(10,10)
  76. pb = Instance.new("ParticleEmitter",head)
  77. pb.Lifetime = NumberRange.new(5)
  78. pb.Speed = NumberRange.new(10)
  79. pb.Texture = "http://www.roblox.com/asset/?id=118129065"
  80. pb.Color = ColorSequence.new(Color3.new(0,0,1))
  81. pb.Acceleration = Vector3.new(0,-5,0)
  82. pb.Rate = 20
  83. pb.SpreadAngle = Vector2.new(10,10)
  84. wait(30)
  85. music:Stop()
  86. explosion:Play()
  87. Instance.new("Explosion",head).Position = head.Position
  88. end
  89. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement