historical/MixaholicREVIZIONAdmin.git/FE-NOTOOLCLEAN
2024-01-16 11:20:27 -06:00

10 lines
286 B
Text

for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if (v:IsA("Tool")) then
v.Parent = game.Players.LocalPlayer.Character
end
end
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if (v:IsA("Tool")) then
v.Parent = workspace.Terrain
end
end