I am using a Custom Mouse but when I hover my mouse onto a TextButton, it defaults back to normal. I want to know how to change it without changing the .png file in the games files. This is my script that I'm using.
local mouse = game.Players.LocalPlayer:GetMouse() mouse.Icon = 'rbxassetid://6701678581'
Then put a LocalScript into the Button and write the same, but just into a Hover event
local b = script.Parent b.MouseEnter:Connect(function() local mouse = game.Players.LocalPlayer:GetMouse() mouse.Icon = 'rbxassetid://6701678581' end) b.MouseLeave:Connect(function() local mouse = game.Players.LocalPlayer:GetMouse() mouse.Icon = 'rbxassetid://6701678581' end)
I think that’s should be okay ????