Posted
I need a script that removes/deletes (NOT DROPS THE TOOLS) all of the tools expect one of the tools i have
is there a script that removes all tools expect 1 that i can choose too not be deleted?
The reasone i need it is because my kill script works only on 1 tool and the kill script uses other tools that dont work with the kill script.
Replied
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.Name ~= "ToolYouDontWantToRemove" then
v:Destroy()
end
endCancel
Post
https://imgur.com/a/oOomuUo
Replied
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post