Click detector cursor

I want to make the click detector cursor like the normal roblox cursor, which means the cursor won’t change when you hover over the click detector.
When I put an empty string it shows the normal click detector cursor instead of a normal click detector cursor.
I have looked through the dev hub, youtube, devforum but no one talks about this.

There is a Property called ClickDetector.CursorIcon, To get the roblox cursor you need to put rbxasset://textures/ArrowCursor.png

2 Likes

You can do what @CodedE44OR said or use this piece of code:

local ClickDetector = script.Parent
local CursorId = 0000 -- Replace with the cursor's Id
ClickDetector.CursorIcon = "roblox.com/asset/?id="..CursorId
1 Like