Hey!
So I wanted to make a cursor in one of my games a white-dot cursor, so I thought I’d just change the Mouse.Icon right? Yeah, wrong.
I try set the cursor ID in a localscript
task.delay(1,function()
repeat task.wait()
print("setting")
Mouse.Icon = "rbxassetid://11673735739"
until Mouse.Icon == "rbxassetid://11673735739"
print("Done Setting")
end)
However, this does not change anything of the cursor even though the loop finishes and I’m left with my cursor looking like the default roblox one.
I’ve looked about on devforum to see if I could find any fixes, notably the ones about the image being too small and waiting a moment before the image is set, which I have all troubleshooted and they have not worked.
If anyone has any ideas, I’d be glad to hear them, thank you