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

in live server the game cant find tools in a players startergear?

Asked by 6 years ago

so when they click the button it sells the item and removes it from their backpack and startergear, however it seems in the real server (not studio) it removes the tool from the backpack but cant remove from the startergear. it says it returns nil.

please help, and thank you.

    newslot.MouseButton1Click:connect(function() -- does this when clicked
        local lookforname = player.StarterGear:FindFirstChild(tools[i].Name) -- looks for the tool name in backpack
        if lookforname then -- once it finds the tool it adds the sell value to the players gold
            player.leaderstats.Gold.Value = (player.leaderstats.Gold.Value) + (tools[i].sellPrice.Value)
            newslot:Destroy()
            local item2destroyfromBackpack = player.Backpack:FindFirstChild(tools[i].Name)
            item2destroyfromBackpack:Destroy()
            local item2destroyfromStarterGear = player.StarterGear:FindFirstChild(tools[i].Name)
            item2destroyfromStarterGear:Destroy()

Answer this question