On Roblox Studio, is there any way I could make a 360 image of my game like the one below?
5 Likes
I’m pretty sure increasing the fov could do that.
1 Like
actually nvm the max fov is too low to get full 360 degree vision
You can increase the FOV using a script.
game:GetService("RunService").RenderStepped:connect(function()
if (distort > 0.001) then
cam.CoordinateFrame=cam.CoordinateFrame*CFrame.new(0,0,0,distort,0,0,0,distort,0,0,0,1)
distort = distort - 0.001
end
end)
2 Likes
The Max FOV is low, so I recommend using the script provided above.
(sorry for necro)
It seems this is a panorama image, what you can do is take several viewportframes (with the map ofc) and combine them into one, make sure the viewportframes’ cameras are angled in such a way that it looks distorted on the sides.