I’ve made an accessory shop for a game I’m making. It’s all functional (well, most of it) but I want opinions to make it better. Right now it looks a bit plain but I don’t know how to spice it up
1 Like
Try making some of the buttons more round.
Also hide the all the CoreGui while the shop is open, this will help alot
if gui.Visible == true then
game:GetService("StarterGui"):SetCoreEnabled(Enum.CoreGuiType.All, false)
else
game:GetService("StarterGui"):SetCoreEnabled(Enum.CoreGuiType.All, true)
--Or instead of all, what you disabled/enabled
1 Like