|
| 30 Jan 2016 01:15 PM |
So when I test out my shop gui in Roblox Studios it works fine. But when I play the game not in Roblox Studios it doesn't work. Here is the script inside of the shop gui:
Box = script.Parent.Box Button = script.Parent.OpenAndClose Open = false
Button.MouseButton1Down:connect(function(open) if Open == false then Button.Text = "Close Shop" Box.Visible = true Open = true elseif Open == true then Button.Text = "Open Shop" Box.Visible = false Open = false end end) |
|
|
| Report Abuse |
|
| |
| |