|
| 13 Jul 2014 08:39 PM |
p = Instance.new("Part") p.Parent = Model p.Anchored = true p.Size = Vector3.new(9, 200, 9) p.CanCollide = false p.Transparency = Energy.Transparency p.Name = "StrongBlast" p.BrickColor = Energy.BrickColor p.TopSurface = "Smooth" p2 = Instance.new("PointLight",p) p.BottomSurface = "Smooth" p.CFrame = Torso.CFrame * CFrame.new(Vector3.new(0, 0.5, -2)) * CFrame.fromEulerAnglesXYZ(1.57, 0, 0) Owner = Instance.new("ObjectValue") Owner.Parent = p Owner.Name = "Owner" Owner.Value = Me m = Instance.new("CylinderMesh") m.Parent = p m.Scale = Vector3.new(1, 0, 1) script.Parent.Damage:clone().Parent = p
for i = 1 , 75 do p.Transparency = p.Transparency + 0.005 Energy.Transparency = Energy.Transparency + 0.005 EnergyMesh.Scale = EnergyMesh.Scale + Vector3.new(0.01, 0.01, 0.01) p.CFrame = p.CFrame * CFrame.new(Vector3.new(0, -3, 0)) m.Scale = m.Scale - Vector3.new(0.01, 0.03, 0.01) wait() end |
|
|
| Report Abuse |
|
|
| 13 Jul 2014 08:40 PM |
| How would I make a sphere at the end of this? |
|
|
| Report Abuse |
|
|
| 13 Jul 2014 08:48 PM |
local mesh = Instance.new("Special Mesh", p) mesh.MeshType = "Sphere" |
|
|
| Report Abuse |
|
|
| 14 Jul 2014 04:43 PM |
| That wont work. I am using Mesh |
|
|
| Report Abuse |
|
|
| 16 Jul 2014 08:28 AM |
| You Must create a new part |
|
|
| Report Abuse |
|
|
| 16 Jul 2014 01:20 PM |
| Nvm I had to change the position of the part each time. |
|
|
| Report Abuse |
|