Before starting the tutorial.im sorry for bad quality images
Viewport frame are like imagelabel 2.0
What they dont need
Image
File
What they need
A camera
A part or mesh or union
First insert a ScreenGui in StarterGui
Also insert a viewport frame inside
Then customize it
After insert a LocalScript in the ViewportFrame and type the following code
local viewportFrame = script.Parent
local camera = Instance.new("Camera",viewportFrame)
viewportFrame.CurrentCamera = camera
local part = Instance.new("Part",viewportFrame)
part.BrickColor = BrickColor.new(0,0,230)
part.Position = Vector3.new(0,0,0)
camera.CFrame = CFrame.new(Vector3.new(0,3,12),part.Position) --if you are not famillar with CFrames please read the article Understand CFrame on devforum
Results:
Thanks you for reading i hope you enjoy Have a good day :D