When I Was Playing My Game With My Friend, Friend Said That He Has No Viewmodel, What I Do?
Asked by
2 years ago Edited 2 years ago
Well Its Just Make Arm Visible When First Person And Not Like Viewmodel But
When My Friend Open Developer Console, It Says
Infinite yield possible on 'Workspace.[FriendName]:WaitForChild("Right Arm")'
Stack Begin
Script 'Workspace.[FriendName].Arms' , Line 5
Stack End
I'm Not That Good With Script, I Am Newbie To It.
Here Is Script!
01 | local player = game.Players.LocalPlayer |
03 | local model = game.Workspace:WaitForChild(player.Name) |
05 | local rightarm = model:WaitForChild( "Right Arm" ) |
06 | local leftarm = model:WaitForChild( "Left Arm" ) |
08 | game:GetService( "RunService" ).RenderStepped:Connect( function () |
10 | rightarm.LocalTransparencyModifier = 0 |
11 | leftarm.LocalTransparencyModifier = 0 |