I've tried to get a mouse icon for my tools, I've tried to look for tutorials but I couldn't find any
I've tried to do the code here it is:
local tool = script.Parent tool.Equipped:Connect(function() local B = tool.Parent.Name wait(0.4) local e = game.Players:FindFirstChild(B) local j = e:GetMouse() J.MouseIcon = "340533" end)
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
local tool = script.Parent tool.Equipped:Connect(function() local check = tool.Parent.Name wait(0.4) local plr = game.Players:FindFirstChild(check) local mouse = e:GetMouse() mouse.Icon = "rbxassetid://340533" end)