RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"a roblox script that makes the draws an outline around your character and makes it red"
-- local script local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local function createOutline(part, color) local outline = Instance.new("SelectionBox") outline.Color3 = color outline.LineThickness = 0.05 outline.Transparency = 0.5 outline.Adornee = part outline.Parent = part end for _, part in ipairs(character:GetChildren()) do if part:IsA("BasePart") then createOutline(part, Color3.fromRGB(255, 0, 0)) end end