Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

When I have 30$ and the car costs 50$ it says decimals, what is the problem? [Answerd]

Asked by
RootEntry 111
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.

01--//Variables\\--
02local player = game.Players.LocalPlayer
03local gui = player:FindFirstChild("PlayerGui"):FindFirstChild("CarUI")
04local button = gui:FindFirstChild("TextButton")
05local money = player:FindFirstChild("leaderstats"):FindFirstChild("money")
06local storage = game:GetService("ReplicatedStorage")
07local model = storage:FindFirstChild("OffRoader")
08local price = 50
09--//Main Script\\--
10button.MouseButton1Click:connect(function()
11    if money.Value >= price then
12        warn("Enough Money!")
13        local clonecar = model:Clone()
14        clonecar.Parent = workspace
15        clonecar:MakeJoints()
View all 24 lines...

1 answer

Log in to vote
0
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
7 years ago
Edited 7 years ago

Just concatenate your price variable in :D

01local player = game.Players.LocalPlayer
02local gui = player:FindFirstChild("PlayerGui"):FindFirstChild("CarUI")
03local button = gui:FindFirstChild("TextButton")
04local money = player:FindFirstChild("leaderstats"):FindFirstChild("money")
05local storage = game:GetService("ReplicatedStorage")
06local model = storage:FindFirstChild("OffRoader")
07local price = 50
08 
09button.MouseButton1Click:connect(function()
10    if money.Value >= price then
11        warn("Enough Money!")
12        local clonecar = model:Clone()
13        clonecar.Parent = workspace
14        clonecar:MakeJoints()
15    else
View all 24 lines...
0
Thanks. I didn't know it was that easy, well I appriciate the help =) RootEntry 111 — 7y
0
No problem :D Happy Developing! Goulstem 8144 — 7y
Ad

Answer this question