I’ve had this issue where I hover my mouse over a click detector it changes the icon and when it’s hovering not it changes it to the normal icon where it works in studio but not in-game.
I’ve re-uploaded the icons to try to get them to work (which did nothing), multiple re-formatting of the actual URL of the mouse icons (which still did nothing), and I suspected the new Roblox chat was causing the problems so I disabled the chat and still did nothing.
So as a final attempt, I asked a friend to upload the icons and no surprise they still failed to work in-game.
Hovering over a click detector
CD.MouseHoverEnter:Connect(function(hoveringPlayer)
if hoveringPlayer == Player then
hovering = true
end
end)
CD.MouseHoverLeave:Connect(function(hoveringPlayer)
if hoveringPlayer == Player then
hovering = false
end
end)
The changing of the mouse icon
RunService.RenderStepped:Connect(function()
if hovering == true then
Player:GetMouse().Icon = mouseHover
else
Player:GetMouse().Icon = mouseNormal
end
end)