Advertisement
Hasli4

RBLX. GlassesScript

May 25th, 2025
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.67 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. local faceFrontAttachment = Instance.new("Attachment")
  11. faceFrontAttachment.Name = "FaceFrontAttachment"
  12. faceFrontAttachment.Position = Vector3.new(0, -0.24, -0.45)
  13. faceFrontAttachment.Parent = handle
  14.  
  15. local mesh = Instance.new("SpecialMesh")
  16. mesh.Name = "Mesh"
  17. mesh.Scale = Vector3.new(1, 1, 1)
  18. mesh.MeshId = "rbxassetid://22053998"
  19. mesh.TextureId = "rbxassetid://22053986"
  20. mesh.Parent = handle
  21.  
  22. a.Parent = ReplicatedStorage
  23.  
  24.  
  25.  
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement