Show All Players Placer Script
Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts a popular scripting and programming language.
Instruction
1.Open Roblox And Start Playing 2.Click The Blue Circle To Copy The Script Code 3.Paste The Script Code Into Your Executor 4.Then Execute The Script Code 5.Enjoy
Script Code
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