Placer 📍OP Show all players

Description

Shows all invisible players.


local cooldown = 0.01-- If it lags (which i doubt) change this to like 0.5



while true do
    local Players = game:GetService("Players")

    for _, player in pairs(Players:GetPlayers()) do
        local character = player.Character
        if character then
            local parts = character:GetDescendants()
            for _, part in ipairs(parts) do
                if part:IsA("BasePart") then
                    if part.Transparency ~= 0 and part.Name ~= "HumanoidRootPart" then
                        part.Transparency = 0
                    end
                end
            end
        end
    end
    wait(cooldown)
end

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!