|
| 16 Mar 2013 08:23 PM |
| Anyone know I have no clue >.> |
|
|
| Report Abuse |
|
|
dmjoe
|
  |
| Joined: 01 May 2009 |
| Total Posts: 2387 |
|
|
| 16 Mar 2013 08:26 PM |
Unless you want a slide effect, all you need to do is: Make another button outside the frame. Script inside:
function (onClick) if script.Parent.Frame.Visible == true then script.Parent.Frame.Visible = false elseif script.Parent.Frame.Visible ~= true then script.Parent.Frame.Visible = false end script.Parent.MouseButton1Down:connect(onClick)
~print("pew")~ |
|
|
| Report Abuse |
|
|
|
| 16 Mar 2013 08:29 PM |
Make a textbutton in the Gui. And a textlabel
Gui = game.StarterGui.ScreenGui TxtLab = Gui.TextLabel TxtButton = Gui.TextButton
function onClicked(click) if TxtLab.Visible == true then TxtLab.Visible = false
elseif TxtLab.Visible == false then TxtLab.Visible = true end end |
|
|
| Report Abuse |
|
|
|
| 16 Mar 2013 09:36 PM |
I don't complete understand urs animated,but im sure i did whoever the first 1 said correctly and it didn't work
I had the frame in the gui then inside the gui but not the frame i put the button and added the script u said and nothing. |
|
|
| Report Abuse |
|
|
dmjoe
|
  |
| Joined: 01 May 2009 |
| Total Posts: 2387 |
|
| |
|
Trioxide
|
  |
| Joined: 29 Mar 2011 |
| Total Posts: 32902 |
|
| |
|
WOLFIK963
|
  |
| Joined: 16 Jun 2012 |
| Total Posts: 11 |
|
|
| 17 Mar 2013 10:45 AM |
| hope this things helped you :D |
|
|
| Report Abuse |
|
|