GUESS THE CLONE SCRIPT | Remove Clones πŸ‘€

Description

Remove Clones Open sources

By luaa

Tested With: Delta, Synapse X, Xeno, Wave, Arceous X

Script Code

local players = game:GetService("Players")<br />
local lp = players.LocalPlayer<br />
<br />
local function add(c)<br />
    local h = c:FindFirstChild("EspHighlight") or Instance.new("Highlight")<br />
    h.Name = "EspHighlight"<br />
    h.FillColor = Color3.fromRGB(255, 0, 0)<br />
    h.OutlineColor = Color3.fromRGB(255, 255, 255)<br />
    h.FillTransparency = 0.5<br />
    h.OutlineTransparency = 0<br />
    h.Parent = c<br />
end<br />
<br />
task.spawn(function()<br />
    while task.wait(1) do<br />
        local f = workspace:FindFirstChild("FakeClones")<br />
        if f then f:Destroy() end<br />
        <br />
        for _, p in pairs(players:GetPlayers()) do<br />
            if p ~= lp and p.Character then<br />
                add(p.Character)<br />
            end<br />
        end<br />
    end<br />
end)

Leave a Comment