local SC = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent.leaderstats.SC script.Parent.MouseButton1Click:connect(function() if SC.Value >= 10 then script.Parent["STOP MULTI"].Disabled = false script.Parent.BeamFunction.Disabled = false script.Parent.Text = "Purchase Complete!" wait(0.5) script.Parent.Text = "EQUIP" SC.Value = SC.Value - 10 script.Disabled = true else end end)
(This all works btw) Even though I know entirely how to save leaderstats and tools ect. I am just completely clueless about saving GUI things and I can't find tutorials or help anywhere.
So from what i've seen you want to save bool values, bool value is true/false i think you know, i recommend making a table with bools with each item if it was bought and then save the table and each time you join, you get the table content and done.