So I want to make my crosshair in my game a certain thing, I have the roblox image and this is the code I have but whenever I launch the game it doesn't work.
local mouse = game.Players.LocalPlayer.GetMouse() mouse.Icon = "rbxassetid://1827745864"
It's because you used the "." when getting the player mouse. You were supposed to use ":" Let me help you out:
local mouse = game.Players.LocalPlayer:GetMouse() mouse.Icon = "rbxassetid://1827745864"