I'm making a script that changes the mouse's icon after a player spawns, yet it doesn't work. Here's the code:
game.Players.PlayerAdded:connect(function(player)
wait(2)
local plyr = player
player.CharacterAdded:connect(function(char)
local mouse = plyr:GetMouse()
mouse.Icon = "http://www.roblox.com/asset/?id=167608877"
end)
end)