Advertisement
moathon

scriptPart4

Apr 29th, 2019
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. local scriptt = game.Workspace.Freeze
  2. local sound1 = Instance.new("Sound",scriptt)
  3. sound1.Name = "IceCrack"
  4. sound1.PlaybackSpeed = 1.4
  5. sound1.Volume = 1
  6. sound1.SoundId = "rbxassetid://3096898661"
  7. local sound2 = Instance.new("Sound",scriptt)
  8. sound2.Name = "Shatter"
  9. sound2.SoundId = "rbxassetid://864569342"
  10. sound2.Volume = .1
  11. local creator = Instance.new("ObjectValue",scriptt)
  12. creator.Name = "Creator"
  13. creator.Value = script.Parent
  14. local sparkles = Instance.new("ParticleEmitter",scriptt)
  15. local color1 = Color3.fromRGB(255,255,0)
  16. sparkles.Name = "FrostSparkles"
  17. sparkles.Color = ColorSequence.new(color1)
  18. sparkles.LightEmission = 1
  19. sparkles.LightInfluence = 0
  20. sparkles.Size = NumberSequence.new(.75)
  21. sparkles.Texture = "rbxassetid://298984512"
  22. sparkles.Transparency = NumberSequence.new(.5)
  23. sparkles.Acceleration = Vector3.new(0,-10,0)
  24. sparkles.Drag = 2
  25. sparkles.Enabled = false
  26. sparkles.Lifetime = NumberRange.new(1,2)
  27. sparkles.Rate = 300
  28. sparkles.Rotation = NumberRange.new(-180,-180)
  29. sparkles.RotSpeed = NumberRange.new(-200,200)
  30. sparkles.Speed = NumberRange.new(20,40)
  31. sparkles.SpreadAngle = Vector2.new(-180,180)
  32. local sparkles2 = Instance.new("ParticleEmitter",scriptt)
  33. local color2 = Color3.fromRGB(234,146,255)
  34. local color3 = Color3.fromRGB(254,255,146)
  35. sparkles2.Name = "Puff"
  36. sparkles2.Color = ColorSequence.new(color2,color3)
  37. sparkles2.LightEmission = 0
  38. sparkles2.LightInfluence = 0.5
  39. sparkles2.Size = NumberSequence.new(1.94)
  40. sparkles2.Texture = "rbxassetid://258128463"
  41. sparkles2.Transparency = NumberSequence.new(.5)
  42. sparkles2.Acceleration = Vector3.new(0,0,0)
  43. sparkles2.Drag = 0
  44. sparkles2.Enabled = false
  45. sparkles2.Lifetime = NumberRange.new(1,2)
  46. sparkles2.Rate = 10
  47. sparkles2.Rotation = NumberRange.new(0,0)
  48. sparkles2.RotSpeed = NumberRange.new(60,60)
  49. sparkles2.Speed = NumberRange.new(1,2)
  50. sparkles2.SpreadAngle = Vector2.new(-180,180)
  51. local obj = Instance.new("ObjectValue",scriptt)
  52. obj.Name = "Target"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement