Top down Camera view in studio lite!
Вставка
- Опубліковано 6 лют 2025
- Za tags
#robloxstudio #roblox #robloxstudioscripting #studiolite #robloxgraphics #lighting #hdr #shader #robloxstudiotutorial #ligma #retro #unregisteredhypercam2
The script in the video:
______________________________________________
--[[Paste this in a LocalScript inside of StarterCharacterScripts]]
local Plr = game.Players.LocalPlayer
local Char = Plr.Character or Plr.CharacterAdded:Wait()
local Primary = Char:WaitForChild("HumanoidRootPart")
local Cam = workspace.CurrentCamera
local StudsY = 20--[[change this to how far you want your camera to be]]
local function Enable()
Cam.CameraType = Enum.CameraType.Scriptable
game["Run Service"].RenderStepped:Connect(function()
Cam.CFrame = CFrame.new(Primary.Position.X,StudsY,Primary.Position.Z) * CFrame.Angles(math.rad(-90),0,0)
end)
end
Enable()
______________________________________________