Money system not functional?
So, I am currently making a game with a money system to buy speed/jump power. When I buy something and then press the button that gives you money, it gives my money back plus how much it is supposed to give you. Why is this happening? (the money is called vbucc, I'm gonna make all the scripts into one, seperated into comments for your viewing.
03 | local button = script.Parent |
06 | button.ClickDetector.MouseClick:Connect( function (player) |
07 | vbucc = player.leaderstats.vbucc |
09 | button.BrickColor = BrickColor.new( "Really red" ) |
11 | button.BrickColor = BrickColor.new( "Lime green" ) |
16 | local player = game.Players.LocalPlayer |
17 | local button = player.PlayerGui.Shop 2. MainFrame.Speed.speed 2 |
19 | button.MouseButton 1 Down:Connect( function () |
20 | local cash = player.leaderstats.vbucc |
21 | if cash.Value > = 500 then |
23 | player.Character:FindFirstChild( "Humanoid" ).WalkSpeed = 32 |
29 | local player = game.Players.LocalPlayer |
30 | local button = player.PlayerGui.Shop.MainFrame.Jump.jump 2 |
32 | button.MouseButton 1 Down:Connect( function () |
33 | local cash = player.leaderstats.vbucc |
34 | if cash.Value > = 500 then |
36 | player.Character:FindFirstChild( "Humanoid" ).JumpPower = 100 |
Please help!