RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Esp Script"
local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local function onPlayerAdded(player) if player ~= LocalPlayer then local character = player.Character if character then local humanoid = character:FindFirstChild("Humanoid") if humanoid then local espBox = Instance.new("SelectionBox") espBox.Parent = humanoid espBox.Adornee = humanoid espBox.Color = Color3.new(1, 0, 0) end end end end Players.PlayerAdded:Connect(onPlayerAdded)