Advertisement
CrimsonSword123

Untitled

Jul 1st, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. local sound = Instance.new("Sound")
  2. sound.Parent = game.Workspace.CrimsonSword321.Head
  3. sound.SoundId = "rbxassetid://171715991"
  4. sound.Volume = 1
  5.  
  6. sound:Play()
  7.  
  8. for i = 1,300 do
  9. local p = Instance.new("Part")
  10. p.Size = Vector3.new(1,1,1)
  11. p.Color = Color3.new(math.random(),math.random(),math.random())
  12. p.Position = game.Workspace.DoctorHelix.Head.Position + Vector3.new(0,3,0)
  13. p.Velocity = Vector3.new(math.random(-50,50),math.random(20,50),math.random(-50,50))
  14. p.CanCollide = false
  15. p.Parent = game.Workspace
  16.  
  17. local f = Instance.new("Fire")
  18. f.Color = Color3.new(math.random(),math.random(),math.random())
  19. f.Parent = p
  20.  
  21. local s = Instance.new("PointLight")
  22. s.Color = p.Color
  23. s.Parent = p
  24. s.Brightness = 100
  25.  
  26. local rp = Instance.new("RocketPropulsion")
  27. rp TARGET = game.Workspace.DoctorHelix.Torso
  28. rp.MaxSpeed = 45
  29. rp.Parent = p
  30. rp:Fire()
  31.  
  32. wait(math.random(0.2,0.5))
  33. end
  34.  
  35. sound:Stop()
  36.  
  37. wait(20)
  38. for i,v in pairs(game.Workspace:GetChildren()) do
  39. if v.Name == "Part" then
  40. v:Destroy()
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement