Well first you gotta work out your variable naming why will you name the mouse variable j? just name it mouse; naming stuff, especially functions' names is imporant, here it's easy but
sometimes your script gets crazy complicated.
ok next, its Mouse.Icon
, the property name is Icon not MouseIcon, always check this type of stuff.
And also, always if it's an image or a texture property you don't just put numbers like that you gotta do rbxassetid://idhere
.
And i think that's all the problems
So this is your script
01 | local tool = script.Parent |
03 | tool.Equipped:Connect( function () |
05 | local check = tool.Parent.Name |
07 | local plr = game.Players:FindFirstChild(check) |
08 | local mouse = e:GetMouse() |
And if you want more info about mouse