Advertisement
EmeraldIT

Untitled

Mar 29th, 2020
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. pl = owner
  2. ch = pl.Character
  3. tor = ch.HumanoidRootPart
  4. fol = Instance.new("Folder")
  5. fol.Parent = ch
  6.  
  7. g = Instance.new("ScreenGui")
  8. g.Parent = pl.PlayerGui
  9. g.Name = "BoomBoomGui"
  10.  
  11. gf = Instance.new("Frame")
  12. gf.Size = UDim2.new(1,0,1,0)
  13. gf.BackgroundTransparency = 1
  14. gf.Parent = g
  15.  
  16. gb = Instance.new("TextButton")
  17. gb.Size = UDim2.new(0.2,0,0.1,0)
  18. gb.BackgroundTransparency = 1
  19. gb.Position = UDim2.new(0,500,0,500)
  20. gb.TextScaled = true
  21. gb.Text = "Blight >.>"
  22. gb.Font = "SciFi"
  23. gb.TextStrokeTransparency = 0
  24. gb.TextColor3 = Color3.new(0.5,0,0)
  25. gb.TextStrokeColor3 = Color3.new(0.2,0,0)
  26. gb.Parent = gf
  27.  
  28. local Star = Instance.new("Part", fol)
  29. Star.Size = Vector3.new(4,4,4)
  30. Star.Material = "Neon"
  31. Star.Massless = true
  32. Star.Anchored = false
  33. Star.CanCollide = false
  34. Star.Color = Color3.new(0,0,0)
  35. Star.Shape = "Ball"
  36.  
  37. Star2 = Star:Clone()
  38. Star2.Parent = fol
  39. Star2.Size = Vector3.new(4.1,4.1,4.1)
  40. Star2.Material = "ForceField"
  41. Star2.Color = Color3.new(1,0,0)
  42.  
  43. local well = Instance.new("Weld", Star)
  44. well.Part0 = tor
  45. well.Part1 = Star
  46. well.C0 = CFrame.new(0,8,0)
  47.  
  48. local well = Instance.new("Weld", Star)
  49. well.Part0 = Star2
  50. well.Part1 = Star
  51. well.C0 = CFrame.new(0,0,0)
  52.  
  53. balltext = 11514674
  54.  
  55. function boom()
  56. chara = owner.Character
  57.  
  58. local orbuur = Instance.new("Part", fol)
  59. orbuur.Size = Vector3.new(.2,.2,.2)
  60. orbuur.Name = "dofus"
  61. orbuur.Shape = "Ball"
  62. orbuur.Position = chara.Head.Position
  63. orbuur.CanCollide = false
  64. orbuur.Massless = true
  65. orbuur.Material = "Neon"
  66. orbuur.Transparency = 0
  67. orbuur.Color = Color3.new(0.4,0,0)
  68. orbuur.Reflectance = 0
  69. trail = Instance.new("Trail", orbuur)
  70. trail.LightEmission = 0
  71. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0), NumberSequenceKeypoint.new(1,1)})
  72. trail.WidthScale = NumberSequence.new({NumberSequenceKeypoint.new(0,1), NumberSequenceKeypoint.new(1,0)})
  73. trail.Color = ColorSequence.new(Color3.new(0.3,0,0))
  74. trail.FaceCamera = true
  75. trail.Lifetime = 1
  76. att = Instance.new("Attachment", orbuur)
  77. att2 = Instance.new("Attachment", orbuur)
  78. att.Position = Vector3.new(0,0.1,0)
  79. att2.Position = Vector3.new(0,-0.1,0)
  80. trail.Attachment0, trail.Attachment1 = att, att2
  81. local wel = Instance.new("Weld", Star)
  82. p = Instance.new("Part", fol)
  83. p.Transparency = 0
  84. p.Size = Vector3.new(1,1,1)
  85. wel.Part0 = Star
  86. wel.Part1 = p
  87. wel.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.random(1,2)/5,math.random(1,10),math.random(1,2)/5)
  88. local well = Instance.new("Weld", p)
  89. well.Part0 = p
  90. well.Part1 = orbuur
  91. well.C0 = CFrame.new(math.random(5,10),0,0)
  92.  
  93. local inc = math.random(1.2,3.2)
  94.  
  95. spawn(function()
  96. Sine = 0
  97. for i = 1, math.huge do
  98. wel.C0 = wel.C0:Lerp(wel.C0*CFrame.Angles(inc/5,inc,inc/5),0.1)
  99. wait(0.025)
  100. end
  101. end)
  102. end
  103.  
  104. gb.MouseButton1Down:Connect(boom)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement