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.