Can't see hands on a Roblox FPS game - NEED HELP ASAP

I am currently working on a FPS game, and I came across this weird bug while adding a viewmodel to the game. And BTW I am using a Fe gun kit by bluric_64bit(New and edited version). The weapon functions well, but I can’t be able to see the hands.

A picture of the bug:

Any type of help would be appreciated!! And I need help ASAP!!

1 Like

Show me a picture of your explorer. Make sure you didn’t accidently delete the arms model.

1 Like

You may need to modify the LocalTransparency property of the local players’ character. For R6, it would look something like:

local char = game:GetService("Players").LocalPlayer:WaitForChild("Character")

char["Left Arm"].LocalTransparency = 0
char["Right Arm"].LocalTransparency = 0

For R15 you’ll need to add the additional limbs (Left Arm → LeftUpperArm, LeftLowerArm, LeftHand)

3 Likes

Sure,



1 Like

Where can I modiify? Shall I create a new local script?

1 Like

‎‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎‏‏‎ ‎

Within the localscript that is handling the first-person gun

1 Like

I found nothing like the code you sent me, I also changed few variables. But nothing, I barely found the property(LocalTransparecy) you mentioned. And of course I also searched for the property(Transparency).

You did find a local transparency property? If it’s nonexistent for the arms, add it in.

Oh ok, I will do that, and set to 0

The gun dind’t work when, I added your code.

Can you share the error message and the line it’s on?

Ok, sure.


Line 160:
image

1 Like

Hello? Are you there? Do you have any ideas??

The property is called “LocalTransparencyModifier”

Oh, yes that makes more sense, because I saw one property named that. Thank you btw!

1 Like

Still no changes, do you have any other ideas??

Have you tried using these 2 commented lines

1 Like

Yes, I tried that. and this is the error I get:

1 Like

Did the gun rotate itself?
Forgot to mention, you will need to apply the changes in a loop (if they already aren’t)

Sorry for typing slowly, I am from my phone

local RunService = game:GetService("RunService")

RunService.RenderStepped:Connect(function()
-- apply transparency changes for the fake arms here
end)
1 Like