Advertisement
Hasli4

Untitled

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