so im trying to makea button which adds size an gives money heres the script it is inside the button and the ClassName is localscript heres code: local BDS = game.Players.LocalPlayer.Humanoid.BodyDepthScale local BHS = game.Players.LocalPlayer.Humanoid.BodyHeightScale local HS = game.Players.LocalPlayer.Humanoid.HeadScale local BWS = game.Players.LocalPlayer.Humanoid.BodyWidthScale local Button = script.Parent local money = game.Players.LocalPlayer.leaderstats.Money local size = game.Players.LocalPlayer.leaderstats.Size
Button.MouseButton1Click:Connect(function() size, money.Value = size, money.Value + 2
BDS,BHS,HS,BWS.Value = BDS,BHS,HS,BWS.Value + 0.02
end)