ADVERTISEMENTREMOVE ADS
Game icon

Find All

Find the Ducks πŸ€β€’
10 months ago
Script preview thumbnail
Script Preview

Description

Teleports to ducks and fires the click detector to find them

Features:

  • find ducks
ADVERTISEMENTREMOVE ADS
15 Lines β€’ 655 Bytes
Raw
for _, v in pairs(workspace.Ducks:GetChildren()) do
local mesh = v:FindFirstChildOfClass("MeshPart")
local part = v:FindFirstChildOfClass("Part")
if (mesh and mesh.Transparency < 0.1) or (part and part.Transparency < 0.1) then
repeat
task.wait()
game:GetService("Players").LocalPlayer.Character:PivotTo(v:GetPivot())
fireclickdetector(v:FindFirstChildOfClass("ClickDetector"))
mesh = v:FindFirstChildOfClass("MeshPart")
part = v:FindFirstChildOfClass("Part")
until (mesh and mesh.Transparency > 0.05) or (part and part.Transparency > 0.05)
end
end
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS