If you want to change the Cursor when putting over a Click detector.
For that you would place a LocalScript in a place like StarterGui
01 | local player = game.Players.LocalPlayer |
02 | local character = player.Character |
03 | local character = player.Character |
04 | if not character or not character.Parent then |
05 | character = player.CharacterAdded:wait() |
07 | local mouse = player:GetMouse() |
10 | mouse.Move:connect( function () |
11 | local target = mouse.Target |
14 | elseif target.Name = = "ClickableObject" then |
15 | mouse.Icon = "asdhajsoidjia" |
18 | mouse.Icon = "asdjiasf;k,fgm" |
You would then add a click function while hovering is on, also change the Icon to the ones you want.