Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I go around scripting it so I can see my torso, arms, and legs whilst in first person?

Asked by
Nuzixa 4
3 years ago

Hi, I was wondering how to script it so I can see my whole body whilst in first person. Please help! Thanks.

1 answer

Log in to vote
1
Answered by 3 years ago

You don't deserve this for writing such a low-effort question, without even giving what you've tried or what you know. But I am bored and so, here:

game:GetService("RunService").RenderStepped:Connect(function()
    repeat wait() until game:GetService("Players").LocalPlayer.Character
    for _,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
        if v:IsA("BasePart") then
            v.LocalTransparencyModifier = 0
        end
    end
end)

Put it in a LocalScript in StarterPlayerScripts in StarterPlayer.

Ad

Answer this question