|
| 21 Jun 2014 04:02 PM |
I want to make a book that can be opened by clicking on it, making a GUI pop up showing the cover, and then two buttons to turn the pages. I'd like it to have a LOT of pages and to be able to fit a LOT of text.
How do I go about doing that? |
|
|
| Report Abuse |
|
|
| 21 Jun 2014 05:44 PM |
Well add something like this use if statement then else
book = script.Parent
if next == true then book.page1.Visible = true
elseif next == false then book.page1.Visible = false book.page2.Visible = true --- you can add more elseifs for pages then at the end add else
else book.page2.Visible = false book.page1.Visible = true
just an example you need a function
|
|
|
| Report Abuse |
|