Hello, I was wondering how to change the size of a clickdetector image, if possible?
my clickdetector icon looks like this:
Hello, I was wondering how to change the size of a clickdetector image, if possible?
my clickdetector icon looks like this:
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.
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.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.