Hello,
I’m trying to hide the players cursor and unhide it. Hiding works fine, but it doesn’t change back? How is this possible?
if debounce == false then
debounce = true
if mousevisibile == true then
mousevisibile = false
mouse.Icon = " "
else
mousevisibile = true
mouse.Icon = "rbxasset://SystemCursors/PointingHand"
end
wait(.5)
debounce = false
end
thanks for helping!