WALLE112
|
  |
| Joined: 26 Jul 2008 |
| Total Posts: 712 |
|
|
| 30 Dec 2011 10:18 PM |
| So i'm trying to create a script where every few seconds a new decal will be put on the brick. Like switching faces back and forth every few seconds. So how do I start? |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2011 10:21 PM |
I'd put all the decals you want inside a model... then use this script.
mod = game.Workspace.MODEL NAME HERE x = mod:GetChildren() while wait() do for i = 1,#x do x[i].Parent = script.Parent wait(5) x[i].Parent = mod end end
Pretty sure that should do something decent |
|
|
| Report Abuse |
|
|
WALLE112
|
  |
| Joined: 26 Jul 2008 |
| Total Posts: 712 |
|
|
| 30 Dec 2011 10:27 PM |
| I'm trying to make faces switch back and forth on a brick I have ready. This script isn't working for it. |
|
|
| Report Abuse |
|
|
WALLE112
|
  |
| Joined: 26 Jul 2008 |
| Total Posts: 712 |
|
|
| 30 Dec 2011 10:35 PM |
| Can anyone please tell me how to start the script, or point out a link to the wiki that explains this type of coding? |
|
|
| Report Abuse |
|
|