19 lines
530 B
Text
19 lines
530 B
Text
|
--SPAM PARTS
|
||
|
--BY SPARKSAMMY
|
||
|
_G.spamparts = true
|
||
|
while wait(.1) and _G.spamparts == true do
|
||
|
pos = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
|
||
|
for _, a in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
|
||
|
if a:IsA("Tool") then
|
||
|
wait(.1)
|
||
|
a.CanBeDropped = true
|
||
|
game.Players.LocalPlayer.Character.Humanoid:EquipTool(a)
|
||
|
a.Handle.Mesh:Destroy()
|
||
|
a.Parent = game.Workspace
|
||
|
end
|
||
|
end
|
||
|
game.Players.LocalPlayer.Character.Humanoid.Health = 0
|
||
|
wait(6)
|
||
|
game.Players.LocalPlayer.Character:MoveTo(pos);
|
||
|
end
|