How can I make legs visible in First Person?

So, I found this post on the DevForum on how to make arms visible.

local player = game.Players.LocalPlayer
local char = player.Character or player.CharacterAdded:Wait()

game:GetService("RunService").RenderStepped:Connect(function()
	for i, part in pairs(char:GetChildren()) do
		if string.match(part.Name, 'Arm') or string.match(part.Name, 'Hand') then
			part.LocalTransparencyModifier = 0
		end
	end
end)

I was wondering how I can make it also show legs.

2 Likes

Couldn’t you use the same script and put in Leg for Arm and foot for Hand?

3 Likes

Thanks it worked! But, instead of making it another script, I implemented it into the same script.

2 Likes