#How do I get rid of the Controllers while in VR mode?

4 messages · Page 1 of 1 (latest)

tepid mesa
#

They render in and out of existence and get in the way if your creating things that are supposed to replace the controllers...

tepid mesa
#

found an answer,

#
task.spawn(function()
    for i = 1, 600 do
        local Worked = pcall(function()
            StarterGui:SetCore("VREnableControllerModels", false)
            DefaultCursorService:SetCursorState("Detect")
        end)
        if Worked then break end
        task.wait(0.1)
    end
end)

--I found it in the nexus vr model

#
local StarterGui = game:GetService("StarterGui")

task.spawn(function()
    for i = 1, 600 do
        local Worked = pcall(function()
            StarterGui:SetCore("VREnableControllerModels", false)
        end)
        if Worked then break end
        task.wait(0.1)
    end
end)

This script should work