How to make this?

Hello there,
So I started making my game today and I want to make a health bar that includes the player icon.

Photo1
This is what I want the icon to look like.

Photo2
And this is what it looks like.
You can see how on the first picture the icon fits in to the shape of circle, while on the 2nd picture it doesn’t.and part of the arms are sticking out.
Photo3
This is what I mean.

1 Like

Try this:

1 Like

What I did was rotate the frame and stretched it so the corners fit inside the circle, then I turn on masking so it cuts out some of the images out.

viewport frame with low fov, put cylinder in it, put decal on cylinder.
voila

1 Like
  1. local ThumbnailType = Enum.ThumbnailType.HeadShot

  2. local ThumbnailSize = Enum.ThumbnailSize.Size48x48

  3. local Players = game:GetService(“Players”)

  4. local Player = Players.LocalPlayer

  • while wait() do
  1. script.Parent.Image = Players:GetUserThumbnailAsync(Player.userId, ThumbnailType, ThumbnailSize)

  2. end

1 Like