Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to change hand pointer icon?

Asked by 2 years ago

Hi is there a way to change the icon for the hand pointer thingy that shows up when you hover your mouse over an an imagebutton or a textbutton I know you can change the icon for your mouse but I couldnt find anything for this.

0
Hello, You can change the mouse icon when the mouse enters the GUI, for example, script.Parent.MouseEnter:Connect(function() local mouse = game.Players.LocalPlayer:GetMouse() mouse.Icon = "desired image id here" end) Q1ddz 0 — 2y
0
that doesnt change the HAND icon mishokirva 22 — 2y
0
My mistake. Q1ddz 0 — 2y

1 answer

Log in to vote
0
Answered by 2 years ago

To change the Mouse Icon you can simply use the Player’s Mouse service for that.


local player = game.Players.LocalPlayer --define in a diferent way if you don't want to use a local script local mouse = player:GetMouse() mouse.Icon = "rbxassetid://0000000"
0
bro how are you this dumb i literally stated in the description that i want to change the icon that shows up when you hover over gui like an imagebutton mishokirva 22 — 2y
0
i also stated in the description that I already know how to change the mouse ico mishokirva 22 — 2y
0
sorry haha, can't read sometimes. zaqree512345 3 — 2y
Ad

Answer this question