--client local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local char = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() -- Helper to clear accessories for _, item in ipairs(char:GetChildren()) do if item:IsA("Accessory") or item:IsA("Shirt") or item:IsA("Pants") or item:IsA("ShirtGraphic") then item:Destroy() end end -- Add blue shirt local shirt = Instance.new("Shirt", char) shirt.ShirtTemplate = "rbxassetid://607785314" -- Blue shirt -- Add blue pants local pants = Instance.new("Pants", char) pants.PantsTemplate = "rbxassetid://1090132834" -- Blue jeans -- Add face decal local face = char:FindFirstChild("Head"):FindFirstChild("face") if face then face.Texture = "rbxassetid://7074976" end -- 😎 smile -- Optional: Add blue sparkles effect local sparkles = Instance.new("Sparkles") sparkles.SparkleColor = Color3.fromRGB(0, 170, 255) sparkles.Parent = char:FindFirstChild("Torso") or char:FindFirstChild("UpperTorso") -- Add a blue hat (Cool Blue Roblox Cap) local function addHat(assetId) local hat = game:GetService("InsertService"):LoadAsset(assetId) for _, obj in ipairs(hat:GetChildren()) do if obj:IsA("Accessory") then obj.Parent = char end end end addHat(48474313) -- Cool Blue Roblox Cap -- Change body color to blue for _, part in ipairs(char:GetChildren()) do if part:IsA("Part") or part:IsA("MeshPart") then part.BrickColor = BrickColor.new("Bright blue") end end -- Optional: Announce in chat game.StarterGui:SetCore("ChatMakeSystemMessage", { Text = "You are now a skid", Color = Color3.fromRGB(0, 170, 255), Font = Enum.Font.SourceSansBold, TextSize = 18 })