ADVERTISEMENTREMOVE ADS
Auto Collect Particle
210 views
Description
-- Automatically Collect All Particle
ADVERTISEMENTREMOVE ADS
15 Lines • 435 Bytes
while true do
for _, player in pairs(game.Players:GetPlayers()) do
local char = player.Character
if char and char:FindFirstChild("HumanoidRootPart") and workspace.Particles:FindFirstChild("Particle") then
local hrp = char.HumanoidRootPart
local particle = workspace.Particles.Particle
firetouchinterest(hrp, particle, 0)
task.wait()
firetouchinterest(hrp, particle, 1)
end
end
task.wait(0.1)
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS






Comments