|
| 12 Mar 2016 10:31 PM |
local num = 0 function onClick() num = num + 1 if num == 0 then script.Parent.Parent.One.Visible = true end if num == 1 then script.Parent.Parent.One.Visible = false end if num == 2 then end if num > 2 then num = 0 end end |
|
|
| Report Abuse |
|
|
|
| 12 Mar 2016 10:36 PM |
local num = 0 function onClick() num = num + 1 if num == 0 then script.Parent.Parent.One.Visible = true script.Parent.Parent.Three.Visible = false end if num == 1 then script.Parent.Parent.One.Visible = false script.Parent.Parent.Two.Visible = true end if num == 2 then script.Parent.Parent.Three.Visible = true script.Parent.Parent.Two.Visible = false end if num > 2 then num = 0 end end |
|
|
| Report Abuse |
|
|
| |
|
| |
|