Is there a better way to change my game's mouse icon?

I always write this code in a local script and put it in player’s StarterCharacterScripts

local M = game.Players.LocalPlayer:GetMouse()
M.Icon = "The Asset ID"

But it doesn’t work when testing it from the game itself

Should work, try slowing down a bit when published if this is all the script is.

task.wait(1) -- when published
icon="rbxassetid://6549216050"
player=game:GetService("Players").LocalPlayer
mouse=player:GetMouse();mouse.Icon=icon
1 Like

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