|
| 02 Dec 2012 08:20 AM |
look in my models, its the first sword. when you launch a fireball, i want to change the color of the fire to blue instead of regular, also i want to make the ball a different color too. can someone help with this? |
|
|
| Report Abuse |
|
|
madiik
|
  |
| Joined: 10 Feb 2009 |
| Total Posts: 625 |
|
|
| 02 Dec 2012 08:27 AM |
Search the color of the script or just Change the COLOR of fire. P.S It's a textured mesh, Remove the texture and Replace yours. If you place a decal on it, IT will automatically cover the whole Mesh. |
|
|
| Report Abuse |
|
|
|
| 02 Dec 2012 08:40 AM |
i was thinking if i did something like fire.color = n n being the number for the color. would this work if i placed it right next to "fire.size=5" thingy? |
|
|
| Report Abuse |
|
|
Monkey727
|
  |
| Joined: 12 Jan 2009 |
| Total Posts: 969 |
|
|
| 02 Dec 2012 08:45 AM |
Fire.Color = Color3.new(r,g,b)
Where r,g,b is red colour, green and blue respectively, Out of 255.
Eg.
Fire.Color = Color3.new(0,0.5,1) or Fire.Color = Color3.new(0,127.5/255,255/255)
There is also SecondaryColor, Works the same way. |
|
|
| Report Abuse |
|
|
madiik
|
  |
| Joined: 10 Feb 2009 |
| Total Posts: 625 |
|
|
| 02 Dec 2012 08:47 AM |
It needs it's own line, Like this: 36 fire.size=5 -- Occupied 37 fire.color = (Your wished color here WITH NUMBERS) |
|
|
| Report Abuse |
|
|
madiik
|
  |
| Joined: 10 Feb 2009 |
| Total Posts: 625 |
|
|
| 02 Dec 2012 08:49 AM |
Fire.Color = Color3.new(0,127.5/255,255/255)
O_o
Thats huge, I think it would be too long to type,I LIKE TO TAKE DAH SHORTCUTS
-=I <3 Snow=- |
|
|
| Report Abuse |
|
|
madiik
|
  |
| Joined: 10 Feb 2009 |
| Total Posts: 625 |
|
|
| 02 Dec 2012 08:52 AM |
I reccomend using Green and Blue, An example: Fire.Color = Color3.new(0/151/255)
Best Fire color
-=I <3 Snow=- |
|
|
| Report Abuse |
|
|
magnalite
|
  |
| Joined: 18 Oct 2009 |
| Total Posts: 2467 |
|
|
| 02 Dec 2012 08:56 AM |
| madiik, learn a bit more about scripting before helping others. |
|
|
| Report Abuse |
|
|
Monkey727
|
  |
| Joined: 12 Jan 2009 |
| Total Posts: 969 |
|
|
| 02 Dec 2012 09:15 AM |
| @Madiik, You can't use Fire.Color = Color3.new(0/151/255), Firstly you need "," (or ";" works too I believe), And secondly they need to be between 0 and 1. 255/255 = 1 127.5/255 = 0.5 |
|
|
| Report Abuse |
|
|
|
| 02 Dec 2012 09:54 AM |
ok monkey helped, how do i change secondary? is it this: secondary.fire.color=(r,g,b) or, fire.color.secondary=(r,g,b) maybe something like that? |
|
|
| Report Abuse |
|
|
magnalite
|
  |
| Joined: 18 Oct 2009 |
| Total Posts: 2467 |
|
|
| 02 Dec 2012 10:05 AM |
| Fire.SecondaryColor = Color3.new(r,g,b) |
|
|
| Report Abuse |
|
|