I’m making a first person horror game and I want to replace the curser with a dot like i’ve seen in other games. I’ve look on dev form for something but i’ve only seen how to get rid of the curser not how to replace it.
Any help would be nice thanks.
4 Likes
To change this you’d have to change the Icon
property of the mouse. To do this you should insert a LocalScript
into the StartGui
. Then you’d need the following code:
local Player = game:GetService("Players").LocalPlayer -- Get the client
local Mouse = Player:GetMouse() -- Find the mouse object
Mouse.Icon = id for the image of a dot
Thanks I’ll try that! Also if the image is to big how would I size that down?
As far as I know, you can’t resize the mouse icon, you’d have to either make your own dot (which shouldnt be too hard) or just find a different image.
So would I just have to make the dot really small or something?
Yup, you can make the size whatever you want!
I have a question, With the new Creator Marketplace, how would you be able to get the asset link? I can’t seem to get the asset link for this to put into the script.