--Made by smashfighter2
sp=script.Parent
local head=sp:WaitForChild("Head")
function breathefire() local fireball=Instance.new("Part") fireball.Name="Effect" fireball.BrickColor=BrickColor("Bright orange") fireball.Size=Vector3.new(3,4,5) fireball.CanCollide=false fireball.CFrame=head.CFrame fireball.Velocity=head.CFrame.lookVector*137 fireball.TopSurface="Smooth" fireball.BottomSurface="Smooth" fireball.Parent=game.Workspace end
while true do wait(.7) end
Maybe where it says BrickColor it maybe needs to be called fireball.BrickColor = BrickColor.new("Bright Orange") if this does not work i does not work know :P
sp=script.Parent local head=sp:WaitForChild("Head") function breathefire() local fireball=Instance.new("Part") fireball.Name="Effect" fireball.BrickColor=BrickColor.new("Bright Orange") -- When saying a Brick Colors full name use BrickColor.new("Bright Orange") fireball.Size=Vector3.new(3,4,5) fireball.CanCollide=false fireball.CFrame=head.CFrame fireball.Velocity=head.CFrame.lookVector*137 fireball.TopSurface="Smooth" fireball.BottomSurface="Smooth" fireball.Parent=game.Workspace end while true do wait(.7) end