[SOLVED] Error while trying to get number from a text box, help?
Asked by
4 years ago Edited 4 years ago
So, i was making an coin to cash and cash to coin exchange but when i tried to get the number from the text box it says: "attempt to perform arithmetic (add) on number and string."
even though i check if its a number when the exchange button is clicked, so i still dont get it... Can you help?
Scripts:
Exchange script (script, server script service):
01 | local cct = game.ReplicatedStorage.remoteEvents.exchange.cointocash |
02 | local ccbt = game.ReplicatedStorage.remoteEvents.exchange.cashtocoin |
03 | local txtbox = game.StarterGui.ccexhanfe.Frame.COIN.ccframe 1. TextBox |
04 | local st = game.ReplicatedStorage.ST |
07 | cct.OnServerEvent:Connect( function (player, amntD, sta) |
08 | local thisplr = game.Players:findFirstChild(player.Name) |
09 | if (thisplr~ = nil ) then |
10 | local stats = thisplr:findFirstChild( "leaderstats" ) |
12 | local cash = stats:findFirstChild( "Cash" ) |
13 | local coin = stats:findFirstChild( "Coins" ) |
15 | cash.Value = cash.Value + txtbox.Text |
Button script (local script, starter gui):
01 | local txtbox = script.Parent.Parent.TextBox |
02 | local sta = game.ReplicatedStorage.ST |
04 | local amntD = txtbox.Text |
06 | local cct = game.ReplicatedStorage.remoteEvents.exchange.cointocash |
11 | script.Parent.MouseButton 1 Click:Connect( function () |
12 | if tonumber (txtbox.Text) then |
13 | sta.Value = "WORKING ON IT!" |
15 | cct:FireServer(amntD, sta) |
17 | sta.Value = "Please enter a number!" |
Dont judge me for using a StringValue, i will fix that soon, its just for test purposes. Also i tried the tonumber(txtbox.Text) that doesnt work either... it says: attempt to perform arithmetic (add) on number and nil