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

How do I make the Buy text box say "Not Enough" for when buying an Item?

Asked by
fr2013 88
6 years ago

This might be a dumb question but how can I say the text 'Not Enough' When the player doesn't have enough levels and not enough cash?

01local price = script.Parent.Parent.Price
02local level = script.Parent.Parent.Level
03local tools = game.ReplicatedStorage:WaitForChild("Tools")
04local tool = script.Parent.Parent.ItemName
05local player = script.Parent.Parent.Parent.Parent.Parent.Parent
06 
07script.Parent.MouseButton1Click:Connect(function()
08    if player.Character:FindFirstChild(tool.Value) or player.Backpack:FindFirstChild(tool.value) then
09    script.Parent.Text = 'Bought'
10    wait(1)
11    script.Parent.Text = 'Buy'
12    return end --Returns if player is holding (or have on the backpack) the tool name (tool.Value)
13    if player.leaderstats:FindFirstChild("Level").Value >= level.Value then
14        if player.leaderstats:FindFirstChild("Cash").Value >= price.Value then
15            player.leaderstats:FindFirstChild("Cash").Value = player.leaderstats:FindFirstChild("Cash").Value - price.Value
16            game.ReplicatedStorage.ShopBuy:FireServer(tool.Value)
17        end
18    end
19end)
0
Try changing on line 13+14, .....("Level").Value >= .... Uhm, > is a symbol for below, but... below what? ( Below what level ) SwingingMelons -18 — 6y
0
Idk if I could put a else since it it has to be equal to or greater than the require level, because if it's below the required level, it need for it to say "Not Enough" and for the cash too. fr2013 88 — 6y
0
Is this a local script? Line 5 could be replaced to game.Players.LocalPlayer. Stay away from using so many parents. xPolarium 1388 — 6y
0
Yes it's a local script fr2013 88 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.

****Make sure this is in a local script

And if it doesn't work let me know.

01local price = script.Parent.Parent.Price
02local level = script.Parent.Parent.Level
03local tools = game.ReplicatedStorage:WaitForChild("Tools")
04local tool = script.Parent.Parent.ItemName
05local player = game.Players.LocalPlayer
06 
07script.Parent.MouseButton1Click:Connect(function()
08    if player.leaderstats:FindFirstChild("Level").Value >= level.Value then
09        if player.leaderstats:FindFirstChild("Cash").Value >= price.Value then
10            player.leaderstats:FindFirstChild("Cash").Value = player.leaderstats:FindFirstChild("Cash").Value - price.Value
11            game.ReplicatedStorage.ShopBuy:FireServer(tool.Value)
12            script.Parent.Text = "BOUGHT"
13            script.Parent.Active = false
14            script.Parent.AutoButtonColor = false
15            script.Parent.Selectable = false
View all 27 lines...
0
Thanks that actually worked fr2013 88 — 6y
0
you can use else :/ natonator63 29 — 6y
0
I know, it was a long script I gave up after 5 seconds trying to find the right line. namespace25 594 — 6y
0
Oof fr2013 88 — 6y
Ad

Answer this question