Can't change mouse icon

  1. What do you want to achieve?
    I just need to use my own mouse image (10523820438).

  2. What is the issue?
    No matter what I try it wont change to the custom image.

  3. What solutions have you tried so far?
    I have tried multiple links like the roblox library link and a rbxassetid link, but none of those worked, I also tried adding a wait, but that too did not work. I also tried different images that are bigger and smaller, but that didn’t work.

(The script is in StarterPlayerScripts)

local plr = game:GetService("Players").LocalPlayer
local uis = game:GetService("UserInputService")

uis.MouseIcon = "rbxassetid://10523820438"

Try to get the player’s Mouse, instead of trying to set the UserInputService of the LocalPlayer.

local plr = game:GetService(“Players”).LocalPlayer
local currentIcon = plr:GetMouse()

currentIcon = "rbxassetid://10523820438"
1 Like

Roblox studio’s mouse icon is bugged for some reason. Try testing in Roblox instead of Roblox Studio and see if it works.

2 Likes

That was the solution all along, thanks!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.