|
| 29 Jun 2015 04:10 PM |
I want to have a fire spawn inside these bricks, but when I try they dont. Here is the script:
local Alarms = script.Parent.FireAlarmSystem
local Fires = false
while true do wait(math.random (5, 20)) if not Fires then Fires = true for _, v in pairs (script.Parent:GetChildren()) do if v.Name == "FireBrick" then v.Fire.Enabled = true end end for _, v in pairs (Alarms:GetChildren()) do if v.Name == "FireAlarm" then v.On.Value = true end end end end
Now, the fire alarms turn on, but the fires in the bricks do not. Any suggestions? |
|
|
| Report Abuse |
|
|
| 29 Jun 2015 04:20 PM |
| Fixed it, it was a work space problem! Sorry! |
|
|
| Report Abuse |
|