I have this script as child of a text button in a menu that doubles your multiplier when u buy it but it doesnt work. Is it cause its a server script inside player gui?
function buy ()
if tokens.Value >= multi.Value * 100 then
multi.Value = multi.Value * 2
tokens.Value = tokens.Value - (multi.Value * 100)
else end
end