How To Make 2D Camera, Isometric Camera In Roblox Studio | Turtorial

Опубликовано: 20 Май 2026
на канале: Froog
4,664
114

Song: Shine Journey (MADE BY MEEEEEE)

--------------------

SUBSCIRBESUBSCIRBE
SUBSUB | \ SUBSUB
SUBSUB | / SUBSUB
SUBSCIRBESUBSCIRBE

--------------------

2D Camera:
local cam = workspace.CurrentCamera

local char = script.Parent
local hrp = char:WaitForChild("HumanoidRootPart")

game:GetService("RunService").RenderStepped:Connect(function()

cam.CameraType = Enum.CameraType.Scriptable

cam.CFrame = cam.CFrame:Lerp(CFrame.new(hrp.Position + Vector3.new(0, 5, 10), hrp.Position), 0.1)
end)

--------------------

Goofy Ahhh Camera:
local player = game.Players.LocalPlayer
local camera = workspace.CurrentCamera

player.CharacterAdded:Wait()
player.Character:WaitForChild("HumanoidRootPart")

camera.CameraSubject = player.Character.HumanoidRootPart
camera.CameraType = Enum.CameraType.Attach
camera.FieldOfView = 100

game:GetService('RunService').Stepped:Connect(function()
camera.CFrame = CFrame.new(player.Character.HumanoidRootPart.Position) * CFrame.new(0,0,10)
end)

--------------------

Isometric Camera:
Pinned Comment!

--------------------
Tags: #roblox #robloxstudio #robloxstudiotutorial