local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() -- Find the right and left hands local rightHand = character:WaitForChild("RightHand") local leftHand = character:WaitForChild("LeftHand") -- Set the size of the right and left hands directly rightHand.Size = Vector3.new(3, 9, 0.3) leftHand.Size = Vector3.new(3, 9, 0.3) -- Set transparency for the right and left hands rightHand.Transparency = 0.8 -- Adjust the value (0 for opaque, 1 for fully transparent) leftHand.Transparency = 0.8 -- Adjust the value (0 for opaque, 1 for fully transparent)