2DWorlds Forums
Can anyone make the following pictures into fire? - Printable Version

+- 2DWorlds Forums (http://2dworlds.buildism.net/forum)
+-- Forum: 2DWorlds (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=4)
+--- Forum: Help (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=21)
+--- Thread: Can anyone make the following pictures into fire? (/showthread.php?tid=7115)



Can anyone make the following pictures into fire? - Fat_Sacks - 07-22-2011

Yeah, I'm making fire right now. I have the textures done, but I need a script...
[Image: jfvtzr.png]
[Image: 29j636.png]
[Image: 2b88zl.png]


RE: Can anyone make the following pictures into fire? - Qwertygiy - 07-22-2011

(07-22-2011, 08:40 PM)Interwebs Wrote: Yeah, I'm making fire right now. I have the textures done, but I need a script...
[Image: jfvtzr.png]
[Image: 29j636.png]
[Image: 2b88zl.png]

For looping, or burning?


RE: Can anyone make the following pictures into fire? - Fat_Sacks - 07-22-2011

Looping. Just have like a brick and have the textures change every .2 seconds.


RE: Can anyone make the following pictures into fire? - Qwertygiy - 07-22-2011

[lua]
while true do
sleep(0.2)
script.Parent.Texture.Image = "http://i54.tinypic.com/jfvtzr.png"
sleep(0.2)
script.Parent.Texture.Image = "http://i55.tinypic.com/29j636.png"
sleep(0.2)
script.Parent.Texture.Image = "http://i52.tinypic.com/2b88zl.png"
end
[/lua]

Put it inside the Box.


RE: Can anyone make the following pictures into fire? - Fat_Sacks - 07-22-2011

Okay, thanks!