|
| 03 Nov 2016 09:15 PM |
So I'm trying to makeing a GUI and trying to make the pages easier to script but everytime I hit the up button it goes to page 3 and the page down button doesn't even work. Some guidence would help please. ( I have the mouse button hit and stuff it works fine)
-(PAGE UP BUTTON SCRIPT)------------------------------------ local P1 = script.Parent.Parent.Parent.Scripts.Scripts.One local P2 = script.Parent.Parent.Parent.Scripts.Scripts.Two local P3 = script.Parent.Parent.Parent.Scripts.Scripts.Three
if P1.Visible == true then P1.Visible = false P2.Visible = true P3.Visible = false end
if P2.Visible == true then P1.Visible = false P2.Visible = false P3.Visible = true end
if P3.Visible == true then end -(PAGE DOWN BUTTON)------------------------------------------- local P1 = script.Parent.Parent.Parent.Scripts.Scripts.One local P2 = script.Parent.Parent.Parent.Scripts.Scripts.Two local P3 = script.Parent.Parent.Parent.Scripts.Scripts.Three
if P3.Visible == true then P1.Visible = false P2.Visible = true P3.Visible = false end
if P2.Visible == true then P1.Visible = true P2.Visible = false P3.Visible = false end
if P1.Visible == true then end
|
|
|
| Report Abuse |
|
|
|
| 03 Nov 2016 09:17 PM |
More clarifications: I press the page up button and it goes to page three and then the page down button doesn't work. So it gets stuck on P3
|
|
|
| Report Abuse |
|
|
| |
|