Как сделать вид от первого лица с видимым телом(тутор по Roblox Studio)

Published: 25 May 2023
on channel: Linex
10,558
191

Короче мне лень делать описание
Скрипты из видео:
1.
local ViewAccessories = false
local ViewModels = false

Plr = game.Players.LocalPlayer
Char = Plr.Character or Plr.CharacterAdded:wait()
Human = Char:WaitForChild("Humanoid")
Cam = game.Workspace.CurrentCamera

Plr.CameraMaxZoomDistance = 400
Plr.CameraMinZoomDistance = 0.5
Cam.FieldOfView = 100
Human.CameraOffset = Vector3.new(0,-0.25,-1.5)

local function Lock (part)
if part and part:IsA("BasePart") and part.Name ~= "Head" then
part.LocalTransparencyModifier = part.Transparency
part.Changed:connect(function (property)
part.LocalTransparencyModifier = part.Transparency
end)
end
end

for i, v in pairs (Char:GetChildren()) do
if v:IsA("BasePart") then
Lock(v)
elseif v:IsA("Accessory") and ViewAccessories then
if v:FindFirstChild("Handle") then
Lock(v.Handle)
end
elseif v:IsA("Model") and ViewModels then
for index, descendant in pairs (v:GetDescendants()) do
if descendant:IsA("BasePart") then
Lock(descendant)
end
end
end
end

Char.ChildAdded:connect(Lock)

Cam.Changed:connect(function (property)
if property == "CameraSubject" then
if Cam.CameraSubject and Cam.CameraSubject:IsA("VehicleSeat") and Human then
Cam.CameraSubject = Human;
end
end
end)


2.
player = game.Players.LocalPlayer
while true do
wait()
player.CameraMode = "LockFirstPerson"
end
надеюсь скрипты рабочие


Watch video Как сделать вид от первого лица с видимым телом(тутор по Roblox Studio) online without registration, duration hours minute second in high quality. This video was added by user Linex 25 May 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 10,558 once and liked it 191 people.