I am currently using a valve index with vive wands. I am trying to get steamvr to work with studio but it will not show the vr mode setting! I have tried for the past hour to find a solution. Any help? (All the vr settings in studio are enabled it just wont show in the ingame setting menu)
What is a problem its not working vr model?
Either its one of your scripts or roblox studio being buggy
I know that already about something is problem
– VR Mode Script for Roblox
local VRService = game:GetService(“VRService”)
– Function to enable VR mode
local function enableVRMode()
if VRService.VREnabled then
print(“VR mode is already enabled.”)
return
end
local success, errorMsg = pcall(function()
VRService:SetUserCFrame(Enum.UserCFrame.Head, CFrame.new(Vector3.new(0, 5, 0))) -- Set the starting position for the VR camera
VRService.UserCFrameChanged:Connect(function()
-- Add your logic for when the user's VR camera position changes
end)
end)
if not success then
warn("Failed to enable VR mode: " .. errorMsg)
else
print("VR mode enabled.")
end
end
– Call the function to enable VR mode
enableVRMode()
For some reason roblox studio does not detect steam vr
I’ve had this same issue, and right now I just test in the actual game which is EXTREMELY annoying :<
I had that enabled, nothing.
79yhhjbjh