i got this rpg smoke script i want to change the smoke's color but i can't lol or else the rocket i fire breaks, but if i remove the line then it's good How can i change the smoke ball's color ?
01 | function smoke(size, ahe) |
02 | p = Instance.new( "Part" ) |
03 | p = BrickColor.Color 3. new "Really black" |
04 | p.Anchored = true |
05 | p.CanCollide = false |
06 | p.TopSurface = 0 |
07 | p.BottomSurface = 0 |
08 | m = 1 |
09 | p.CFrame = CFrame.new(script.Parent.Position + (script.Parent.CFrame.lookVector * ahe) + Vector 3. new(math.random(-m,m),math.random(-m,m),math.random(-m,m))) |
10 | p.Shape = "Ball" |
11 | p.Size = Vector 3. new(size,size,size) |
12 | smo = script.SmokeScript:clone() |
13 | smo.Parent = p |
14 | p.Parent = game.Workspace |
15 | end |
i tried this various ways, no success...
01 | function smoke(size, ahe) |
02 | p = Instance.new( "Part" ) |
03 | p.BrickColor = BrickColor.new ( "Really black" ) |
04 | p.Anchored = true |
05 | p.CanCollide = false |
06 | p.TopSurface = 0 |
07 | p.BottomSurface = 0 |
08 | m = 1 |
09 | p.CFrame = CFrame.new(script.Parent.Position + (script.Parent.CFrame.lookVector * ahe) + Vector 3. new(math.random(-m,m),math.random(-m,m),math.random(-m,m))) |
10 | p.Shape = "Ball" |
11 | p.Size = Vector 3. new(size,size,size) |
12 | smo = script.SmokeScript:clone() |
13 | smo.Parent = p |
14 | p.Parent = game.Workspace |
15 | end |
Instead of Saying p = BrickColor.Color3.new "Really black"
(Which is completely wrong.), use:
p.BrickColor = BrickColor.new ("Really black")
Sorry if it doesnt work.
Color3.new is only used for Smoke/Pointlight/Fire and more!
So when we take your script:
01 | function smoke(size, ahe) |
02 | p = Instance.new( "Part" ) |
03 | p = BrickColor = BrickColor.new( "Really black" ) --- Like that |
04 | p.Anchored = true |
05 | p.CanCollide = false |
06 | p.TopSurface = 0 |
07 | p.BottomSurface = 0 |
08 | m = 1 |
09 | p.CFrame = CFrame.new(script.Parent.Position + (script.Parent.CFrame.lookVector * ahe) + Vector 3. new(math.random(-m,m),math.random(-m,m),math.random(-m,m))) |
10 | p.Shape = "Ball" |
11 | p.Size = Vector 3. new(size,size,size) |
12 | smo = script.SmokeScript:clone() |
13 | smo.Parent = p |
14 | p.Parent = game.Workspace |
15 | end |
Hope i helped!