-
What do you want to achieve? Keep it simple and clear!
I want to be able to press the TextButton with my other hand in VR. -
What is the issue? Include screenshots / videos if possible!
When I try to press the TextButton with my other hand it doesn’t work at all, It doesn’t even hover over the button. It simply ignores it.
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I’ve Tried looking through the properties of the TextButton but none seem to have done anything, I’ve also tried looking online but I didn’t see anyone else have the same issue as me.
Using SurfaceGui.Adornee also didn’t work.
For all I know it could be impossible. In that case I’ll have to use a work around but I’d rather not.
If I try to use this code on the fake hand then it works perfectly fine, but if I try to use it on the real one, it doesn’t activate.
It also doesn’t work on the fake hand if I parent it to the player.
local lefthandrightgui = game.Workspace["fake lefthand"].LeftHandRightGui:Clone() -- gets the Gui
lefthandrightgui.Parent = leftarm -- Parents the GUI to the left hand
lefthandrightgui.Nodelay.Activated:Connect(function() -- When the TextButton "Nodelay" is actiavted this should happen
print("Pressed")
lefthandrightgui.Nodelay.BackgroundColor3 = Color3.fromRGB(255,0,0)
end)
Sorry if this has already been asked before or if I’m just blind and missed a property.