historical/MixaholicREVIZIONAdmin.git/FE-NOTOOLCLEAN

11 lines
286 B
Text
Raw Normal View History

2024-01-16 11:20:27 -06:00
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