How to save bool values using plugin:SetSetting?

Hello! I’m working on my first ever plugin and I was trying to save some values so players don’t need to keep turning the plugin on every time. How will I go about saving 2 bool values using :SetSetting? And how will I go about getting them using :GetSetting? Thanks

SetSetting accepts two arguments, a key string and a variant value, so just use the BoolValue’s name as the first argument and its value as the second one. When using GetSetting make sure you know the name you want to load out and then just set the value of the BoolValue to whatever it returns.

1 Like

managed to do it myself lol, thanks for the reply still