A error shows up when I am trying to click on a button. Help me?
So I am trying to make a bank ATM. I made the gui so it is like I have a textbox then 2 buttons. 1 Button says 'Deposit' and the other one says 'Withdraw'. So when I enter a amount and then click on any of those buttons this error shows up:
07:45:56.117 - Players.iiLevelMaker.PlayerGui.ATMGui.Container.withdraw.LocalScript:9: attempt to compare string with number
This is the script for deposit:
01 | local player = game:GetService( 'Players' ).LocalPlayer |
02 | local gui = player:WaitForChild( 'PlayerGui' ):WaitForChild( 'ATMGui' ) |
03 | local button = gui:WaitForChild( 'Container' ).deposit |
04 | local amountbox = gui:WaitForChild( 'Container' ).TextBox |
05 | local cash = player.leaderstats.Cash |
06 | local bank = player.leaderstats.Bank |
09 | if cash.Value > = amountbox.Text then |
10 | bank.Value = bank.Value +amountbox.Text |
11 | cash.Value = cash.Value -amountbox.Text |
15 | button.MouseButton 1 Click:connect(MouseClick) |
This is the script for withdraw:
01 | local player = game:GetService( 'Players' ).LocalPlayer |
02 | local gui = player:WaitForChild( 'PlayerGui' ):WaitForChild( 'ATMGui' ) |
03 | local button = gui:WaitForChild( 'Container' ).withdraw |
04 | local amountbox = gui:WaitForChild( 'Container' ).TextBox |
05 | local cash = player.leaderstats.Cash |
06 | local bank = player.leaderstats.Bank |
09 | if bank.Value > = amountbox.Text then |
10 | cash.Value = cash.Value +amountbox.Text |
11 | bank.Value = bank.Value -amountbox.Text |
15 | button.MouseButton 1 Click:connect(MouseClick) |