How can you fix this Inventory/Backpack Limit? (No Error In Output)
There is no error or anything, but when somebody purchases it, it says that the player is under the limit, when they reach over 15 tools, it still says it, could somebody help me.
01 | local price = script.Parent.Parent.Price |
02 | local tools = game.ReplicatedStorage:WaitForChild( "Tools" ) |
03 | local tool = script.Parent.Parent.ItemName |
04 | local player = script.Parent.Parent.Parent.Parent.Parent.Parent |
05 | local pack = player:WaitForChild( "Backpack" ):GetChildren() |
06 | local replicatedstorage = game:GetService( "ReplicatedStorage" ) |
08 | script.Parent.MouseButton 1 Click:connect( function () |
10 | print ( "This player has to many items" ) |
12 | replicatedstorage.ClassicSword:Clone() |
15 | print ( "Player Is Under Limit" ) |
16 | if player.Data:FindFirstChild( "Coins" ).Value > = price.Value then |
17 | player.Data:FindFirstChild( "Coins" ).Value = player.Data:FindFirstChild( "Coins" ).Value - price.Value |
18 | game.ReplicatedStorage.ShopBuy:FireServer(tool.Value) |
This is a LocalScript that functions when somebody clicks the textbutton. There already is a leaderstats and everything. Any possible clue?