Guest User

kuchiiskuchi

a guest
Jun 27th, 2025
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. -- Since iam a nice guy here!
  2. -- also prints if applied/fails
  3.  
  4.  
  5.  
  6. local Players = game:GetService("Players")
  7. local InsertService = game:GetService("InsertService")
  8.  
  9. local localPlayer = Players.LocalPlayer
  10.  
  11.  
  12. local function applyCatEars()
  13. local character = localPlayer.Character or localPlayer.CharacterAdded:Wait()
  14.  
  15.  
  16. if character:FindFirstChild("ClientCatEars") then
  17. warn("Cat Ears already applied!")
  18. return
  19. end
  20.  
  21.  
  22. local success, model = pcall(function()
  23. return InsertService:LoadAsset(14262302542)
  24. end)
  25.  
  26. if success and model then
  27. local accessory = model:FindFirstChildWhichIsA("Accessory")
  28. if accessory then
  29. accessory.Name = "ClientCatEars"
  30. accessory.Parent = character
  31.  
  32. local humanoid = character:FindFirstChildOfClass("Humanoid")
  33. if humanoid then
  34. pcall(function()
  35. humanoid:AddAccessory(accessory)
  36. end)
  37. else
  38. warn("No humanoid found, attaching manually.")
  39. local handle = accessory:FindFirstChild("Handle")
  40. if handle then
  41. local head = character:FindFirstChild("Head")
  42. if head then
  43. local weld = Instance.new("Weld")
  44. weld.Part0 = head
  45. weld.Part1 = handle
  46. weld.C0 = CFrame.new(0, 0.5, 0) -- adjust as needed
  47. weld.Parent = head
  48. handle.CFrame = head.CFrame * weld.C0
  49. handle.Anchored = false
  50. handle.CanCollide = false
  51. end
  52. accessory.Parent = character
  53. end
  54. end
  55. end
  56. model:Destroy()
  57. else
  58. warn("Failed to load Cat Ears accessory.")
  59. end
  60. end
  61.  
  62.  
  63. applyCatEars()
Tags: EE
Advertisement
Add Comment
Please, Sign In to add comment