Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a custom cursor for a horror game?

Asked by 4 years ago

Im making a first person game and i need a custom cursor. Can anyone help??

0
Have you tried searching for your question before posting? Link to similar [question](https://scriptinghelpers.org/questions/14190/how-to-change-the-roblox-cursor-icon) ScuffedAI 435 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

I would recommend using https://developer.roblox.com/en-us/api-reference/property/Mouse/Icon

you only need to set the texture of it for example "rbxassetid://example-id"

its the simplest way, if you are looking to change it on a click detector use ClickDetector.CursorIcon

hope i helped

code example

local mouse = game.Players.LocalPlayer:GetMouse()
mouse.Icon = "http://www.roblox.com/asset?id=163023520"
0
side note: the script MUST be in a local script mkhamster 58 — 4y
Ad

Answer this question