i have tried to make one that goes through and parents all the tools to workspace but it doesnt seem to work can someone help me
here is my script:
for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
v.Parent = workspace
end
2 Likes
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetDescendants()) do
if v:IsA("Tool") then
wait(0.1)
v.Parent = game.Players.LocalPlayer.Character
wait(0.1)
v.Parent = game.Workspace
end
end
I Hope This Script work.
sorry but it does not seem to work
Hm, This LocalScript, I Make it Be LocalScirpt.
oh ik why its because of toolcanbedropped
1 Like