RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Esp script"
local players = game:GetService("Players") local function esp(player) local character = player.Character if character then local humanoid = character:FindFirstChild("Humanoid") if humanoid then local head = character:FindFirstChild("Head") if head then local espBox = Instance.new("SelectionBox") espBox.Name = "ESP" espBox.Parent = head espBox.Adornee = head espBox.Color = Color3.fromRGB(255, 0, 0) end end end end for _, player in pairs(players:GetPlayers()) do esp(player) end players.PlayerAdded:Connect(esp)