Change the ClickDetector's Size?

Hello, I was wondering how to change the size of a clickdetector image, if possible?

my clickdetector icon looks like this:
ah

I’m not exactly sure why you would want the Cursor to be bigger as if it is, it can obstruct the view of the ClickDetector Held Instance, making it harder to click, but looking into Mouse and ClickDetectors, you cant.

1 Like

I was actually looking forward to making it smaller! But thank you for sharing your results with me!

It actually is possible, though the method is deprecated it can still be done.

local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
mouse.Icon = "http://www.roblox.com/asset/?id=(assetid)"

You can change the Icon property of the now deprecated mouse object, which you get by calling player:GetMouse() in a local script.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.