i have a custom cursor script that worked prior to my game update an hour ago, but when i go into version history and redownload the game version, the cursor is now broken an only appears for a split second before going to the default one.
i am not getting any errors either
local Player = game:GetService("Players").LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local Humanoid = Character:WaitForChild("Humanoid")
while true do
wait(0.1)
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.Icon = "http://www.roblox.com/asset/?id=12012508811"
end