How do I make Vr Hands like the ones in VR Hands v2.7.2 VR Hands v2.8 - Roblox
Im trying to make a Vr playground but I cant seem to find any tutorials for the type of vr hands I want.
Can anyone help?
How do I make Vr Hands like the ones in VR Hands v2.7.2 VR Hands v2.8 - Roblox
Im trying to make a Vr playground but I cant seem to find any tutorials for the type of vr hands I want.
Can anyone help?
Hey, a quick google search turns up:
I’m a big believer in looking for answers before asking questions
Look through the code within, and you should be good.
@Infinite_Visions If you know how to make them Im willing to pay usd or robux for your help… I just need the hands and head.
Alas, I’ve never worked with VR (I have no VR to test with). I really suggest spending a few hours messing around in studio, and figuring it out. Learning how to program is an important asset
The following code block is what you need. It assumes you have a righthand part. You can use it for left hand and head as well:
HeadScale = 1
Cam = workspace.CurrentCamera
Cam.HeadScale = HeadScale
local cfRH = VRService:GetUserCFrame(Enum.UserCFrame.RightHand)
RightHand.CFrame = (Cam.CFrame*CFrame.new(cfRH.p*HeadScale))*CFrame.fromEulerAnglesXYZ(cfRH:ToEulerAnglesXYZ())
You’d need to wrap the last line in a loop, so it would continuously update. Good luck
will this work for the type of hands I want?
I have no idea. You’ll have to experiment some more.
Check out this link for help and information: VRService | Roblox Creator Documentation
Additionally, I have no idea if this works, but it has good ratings and is by a reputable developer: VR Hands - Roblox