Advertisement
Hasli4

Untitled

Mar 6th, 2025
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. local b = Instance.new("Accessory")
  2. b.Name = "lPHat"
  3.  
  4. local handle = Instance.new("Part")
  5. handle.Name = "Handle"
  6. handle.Size = Vector3.new(1,1.6,1)
  7. handle.Parent = b
  8.  
  9. local HatAttachment = Instance.new("Attachment")
  10. HatAttachment.Name = "HatAttachment"
  11. HatAttachment.Position = Vector3.new(0,0,0)
  12. HatAttachment.Parent = handle
  13.  
  14. local mesh = Instance.new("SpecialMesh")
  15. mesh.Name = "Mesh"
  16. mesh.Scale = Vector3.new(1, 1, 1)
  17. mesh.MeshId = "rbxassetid://101099213"
  18. mesh.TextureId = "rbxassetid://101098928"
  19. mesh.Parent = handle
  20.  
  21. b.Parent = ReplicatedStorage
  22.  
  23.  
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement