Advertisement
Elvisfofo_rblx

blu3kidd

Jun 22nd, 2025
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. --client
  2. local Players = game:GetService("Players")
  3. local LocalPlayer = Players.LocalPlayer
  4. local char = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  5.  
  6. -- Helper to clear accessories
  7. for _, item in ipairs(char:GetChildren()) do
  8. if item:IsA("Accessory") or item:IsA("Shirt") or item:IsA("Pants") or item:IsA("ShirtGraphic") then
  9. item:Destroy()
  10. end
  11. end
  12.  
  13. -- Add blue shirt
  14. local shirt = Instance.new("Shirt", char)
  15. shirt.ShirtTemplate = "rbxassetid://607785314" -- Blue shirt
  16.  
  17. -- Add blue pants
  18. local pants = Instance.new("Pants", char)
  19. pants.PantsTemplate = "rbxassetid://1090132834" -- Blue jeans
  20.  
  21. -- Add face decal
  22. local face = char:FindFirstChild("Head"):FindFirstChild("face")
  23. if face then face.Texture = "rbxassetid://7074976" end -- 😎 smile
  24.  
  25. -- Optional: Add blue sparkles effect
  26. local sparkles = Instance.new("Sparkles")
  27. sparkles.SparkleColor = Color3.fromRGB(0, 170, 255)
  28. sparkles.Parent = char:FindFirstChild("Torso") or char:FindFirstChild("UpperTorso")
  29.  
  30. -- Add a blue hat (Cool Blue Roblox Cap)
  31. local function addHat(assetId)
  32. local hat = game:GetService("InsertService"):LoadAsset(assetId)
  33. for _, obj in ipairs(hat:GetChildren()) do
  34. if obj:IsA("Accessory") then
  35. obj.Parent = char
  36. end
  37. end
  38. end
  39.  
  40. addHat(48474313) -- Cool Blue Roblox Cap
  41.  
  42. -- Change body color to blue
  43. for _, part in ipairs(char:GetChildren()) do
  44. if part:IsA("Part") or part:IsA("MeshPart") then
  45. part.BrickColor = BrickColor.new("Bright blue")
  46. end
  47. end
  48.  
  49. -- Optional: Announce in chat
  50. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  51. Text = "You are now Blue c00lkidd 😎💙",
  52. Color = Color3.fromRGB(0, 170, 255),
  53. Font = Enum.Font.SourceSansBold,
  54. TextSize = 18
  55. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement