Custom Crosshair not working?

Hi, I’m trying to make a custom crosshair for my game and it’s not working for some reason?

I’ve looked at a bunch of tutorials but can’t find a reason

this is my local script in starter player scripts

local player = game.Players.LocalPlayer

local mouse = player:GetMouse()

mouse.Icon = "rbxassetid://72312179499464"

Paste the ID in an ImageLabel and use the ID you get back from it.

1 Like

looks right, but your ID is a bit too long …

local mouse = game.Players.LocalPlayer:GetMouse()
mouse.Icon = "rbxassetid://123456789"

it doesn’t matter the length of the id… but this issue is already solved

1 Like