Value goes back up when you purchase something?
Asked by
4 years ago Edited 4 years ago
Hello!
I have been creating a shop for the past few hours, but there's a problem: the money goes back up in a second after you purchase something.
So, let's say there is something in the shop for 1 thousand cash, and you buy it and expect for your money to go down. Except the opposite happens.
You have 5 thousand cash and you purchase the gear for 1 thousand. The money goes down to 4 thousand for a few seconds, then goes back to 5 thousand. I have a currency riser in the game, but it increases the value by 30 each 1 second.
Heres the currency riser script:
2 | player.leaderstats [ valueName ] .Value = player.leaderstats [ valueName ] .Value + 30 |
And heres the shop script:
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 | script.Parent.Parent.Parent.Parent.Parent.Clicked:Play() |
3 | if game:GetService( "Players" ).LocalPlayer.leaderstats [ "Money" ] .Value < = 1001 then |
4 | game:GetService( "Players" ).LocalPlayer.leaderstats [ "Money" ] .Value = game:GetService( "Players" ).LocalPlayer.leaderstats [ "Money" ] .Value - 1000 |
5 | local balloon = game.Lighting.RedBalloon:Clone() |
6 | balloon.Parent = game.Players.LocalPlayer.Backpack |
All help will be appreciated! :)