|
| 11 Jun 2014 01:00 PM |
is there a way of changing the heat and size of fire coz i cant see it everytime toothless breathes fire
i added the fire but i cant see it help
-- Made by ScorpionDigger--
local sp=script.Parent
local head=sp:WaitForChild("Head") local fireballscript=sp:WaitForChild("fireballscript")
function Breathefire() local fireball=Instance.new("Part") fireball.Transparency=1 fireball.Name="Effect" fireball.BrickColor=BrickColor.new("Bright orange") fireball.Shape="Ball" fireball.Size=Vector3.new(2,2,2) fireball.CanCollide=false fireball.CFrame=head.CFrame fireball.Velocity=head.CFrame.lookVector*50 fireball.TopSurface="Smooth" fireball.BottomSurface="Smooth"
local fire=Instance.new("Fire") fire.Parent=fireball
local firescript=fireballscript:clone() firescript.Parent=fireball firescript.Disabled=false
fireball.Parent=game.Workspace end
while true do wait(2) Breathefire() end
|
|
|
| Report Abuse |
|
|
|
| 11 Jun 2014 01:12 PM |
Fire.Enabled = true?
add this after you made the local fire. |
|
|
| Report Abuse |
|
|
|
| 11 Jun 2014 01:29 PM |
| giving me a error anyway i just need to change the size and heat |
|
|
| Report Abuse |
|
|
| |
|