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

How can you fix this Inventory/Backpack Limit? (No Error In Output)

Asked by 4 years ago

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.

01local price = script.Parent.Parent.Price
02local tools = game.ReplicatedStorage:WaitForChild("Tools")
03local tool = script.Parent.Parent.ItemName
04local player = script.Parent.Parent.Parent.Parent.Parent.Parent
05local pack = player:WaitForChild("Backpack"):GetChildren()
06local replicatedstorage = game:GetService("ReplicatedStorage")
07 
08     script.Parent.MouseButton1Click:connect(function()
09       if #pack >= 15 then
10                print("This player has to many items")
11                pack:Destroy()
12                replicatedstorage.ClassicSword:Clone()
13                     end
14       if #pack <= 15 then
15        print("Player Is Under Limit")
View all 22 lines...

This is a LocalScript that functions when somebody clicks the textbutton. There already is a leaderstats and everything. Any possible clue?

1 answer

Log in to vote
1
Answered by 4 years ago
01local price = script.Parent.Parent.Price
02local tools = game.ReplicatedStorage:WaitForChild("Tools")
03local tool = script.Parent.Parent.ItemName
04local player = game.Players.LocalPlayer
05local replicatedstorage = game:GetService("ReplicatedStorage")
06 
07     script.Parent.MouseButton1Click:connect(function()
08local pack = player:WaitForChild("Backpack"):GetChildren()
09       if #pack >= 15 then
10                print("This player has to many items")
11                pack:Destroy()
12                replicatedstorage.ClassicSword:Clone()
13                     else
14       if #pack <= 15 then
15        print("Player Is Under Limit")
View all 22 lines...

Try this!

Ad

Answer this question