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.
01 | local price = script.Parent.Parent.Price |
02 | local level = script.Parent.Parent.Level |
03 | local tools = game.ReplicatedStorage:WaitForChild( "Tools" ) |
04 | local tool = script.Parent.Parent.ItemName |
05 | local player = game.Players.LocalPlayer |
07 | script.Parent.MouseButton 1 Click: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 |
18 | if player.leaderstats:FindFirstChild( "Level" ).Value < = level.Value then |
19 | if player.leaderstats:FindFirstChild( "Cash" ).Value < = price.Value then |
20 | local OlText = "" ..script.Parent.Text |
22 | script.Parent.Text = "NOT ENOUGH CASH" |
24 | script.Parent.Text = OlText |