Tool in starterpack doesnt give me a tool

Hi, i was making a button that deletes all my tools i have on me, but when i tried creating a tool and putting it in my StarterPack, i didnt get it, but when i put it in workspace i could still pick it up, whats going on?
image
ive tried restarting studio but that doesnt fix anything

1 Like

Can we see the properties of your tool?

1 Like


i did nothing to it so idk

1 Like

What all do you have in workspace and StarterPlayer?

image
image

Would you mind sending me the place file so I can try and fix it?

(P.S If you haven’t already, try opening a COMPLETELY blank baseplate with nothing changed)

ill try to make a new place to see if it works there, if it does ill send this one

2 Likes

fixed the issue, i had a for loop of my backpack that deletes the items in playerpack, i put that in my code for the button i talked about, i didnt make the mousebutton1click thing yet, so it just looped all the time

local player = game.Players.LocalPlayer

for i,v in pairs(player.Backpack:GetChildren()) do
	v:Destroy()
end

my bad for wasting your time

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.