When I have 30$ and the car costs 50$ it says decimals, what is the problem? [Answerd]
Asked by
7 years ago Edited 7 years ago
It says so many numbers when I divide it by the price. But what term do I need (Multiplication, dividing, adding or subtracting) Or can someone help me.
02 | local player = game.Players.LocalPlayer |
03 | local gui = player:FindFirstChild( "PlayerGui" ):FindFirstChild( "CarUI" ) |
04 | local button = gui:FindFirstChild( "TextButton" ) |
05 | local money = player:FindFirstChild( "leaderstats" ):FindFirstChild( "money" ) |
06 | local storage = game:GetService( "ReplicatedStorage" ) |
07 | local model = storage:FindFirstChild( "OffRoader" ) |
10 | button.MouseButton 1 Click:connect( function () |
11 | if money.Value > = price then |
13 | local clonecar = model:Clone() |
14 | clonecar.Parent = workspace |
16 | elseif money.Value < = 49 then |
17 | warn( "Not enough money!" ) |
18 | button.Text = "Not Enough Money. You Have: $" ..money.Value.. " You need $" ..money.Value / 49 |
19 | button.BackgroundColor 3 = Color 3. new( 255 / 255 , 0 / 255 , 0 / 255 ) |
21 | button.BackgroundColor 3 = Color 3. new( 170 / 255 , 255 / 255 , 127 / 255 ) |
22 | button.Text = "Spawn Off Roader" |