I can't find any APIs that would help me change the ROBLOX cursor icon in my horror game. If anyone knows where I can find a related cursor API, I will be grateful.
There are different ways to change the mouse icon. I prefer to change in from the players mouse. You can put a script in the "PlayersGui" or "Backpack" that get's the "Player" then once you have that, you can get the mouse from the player "Player:GetMouse()" This is an example of a script in the "PlayerGui"
player = script.Parent.Parent mouse = player:GetMouse() mouse.Icon = "http://www.roblox.com/asset/?id=75076725" -- This can be any decal you want