So first, i had table.foreach and then someone told me that it was not usable anymore. So i used the for i,vin pairs instead, as most people suggested, but it still doesnt seem to work. Can anyone please tell me what i should do to correct the script? Thanks!
The script is below.
local plr = game.Players.LocalPlayer local ShopTools = plr.Backpack:WaitForChild("BoughtTools"):GetChildren() for i,v in pairs(ShopTools) do local clone = v:Clone() clone.Parent = plr.Backpack end
It is usable, they are wrong. If you want to use an actual loop you should use next over pairs...
local plr = game.Players.LocalPlayer local BoughtTools = plr.Backpack:WaitForChild("BoughtTools"):Clone():GetChildren() print("Bought tools loaded...") wait(3) for _,tool in next, BoughtTools do tool.Parent = plr.Backpack end
Tell me if it prints "Bought tools loaded..."