Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

im trying to make a size sim, theres something in out put saying requested module could not load?

Asked by 4 years ago

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)

Answer this question