Hello, I’m trying to change the mouse icon upon hover. I can change the icon to an official roblox mouse icon, but trying to set it to a custom one does nothing.
plugin:GetMouse().Icon = "rbxassetid://32935220";
any clues?
Hello, I’m trying to change the mouse icon upon hover. I can change the icon to an official roblox mouse icon, but trying to set it to a custom one does nothing.
plugin:GetMouse().Icon = "rbxassetid://32935220";
any clues?
is this in a local script?
edit: also what’s plugin? is it the player?
plugin is a global object if the script is a plugin
have you tried doing this?
--in a local script
local plr = game.Players.LocalPlayer
local mouse = plr:GetMouse()
mouse.Icon = icon
it’s not in a LocalScript, its a plugin script
oh,
This text will be hidden
This is what I’m trying to do.
hmm, have you tried doing
local mouse = plugin:GetMouse()
mouse.Icon = icon
sorry, i’m not very familiar on how to make plugins
yeah that’s the same as what I posted