#Custom cursor help

1 messages · Page 1 of 1 (latest)

wary python
#

I need help, I try to make my own script or follow a youtube video and all of the scripts i used never work. I put the script in StarterPlayerScript and StarterCharacterScript

`local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local mouse = LocalPlayer:GetMouse()

local customCursor = "rbxassetid://13459317900"
mouse.Icon = customCursor`

gray oxide
#

UserInputService

#
local UserInputService = game:GetService("UserInputService")
UserInputService.MouseIcon = "your asset id"
gray oxide
#

Try putting your asset id to a

#

ImageLabel

wary python
#

It does exist for me

gray oxide
#
local UserInputService = game:GetService("UserInputService")
UserInputService.MouseIcon = "your asset id"
UserInputService.MouseIconEnabled = true
#

insert your asset id

#

and try this

wary python
#

Still nothing 😦

bright zephyrBOT
#

studio** You are now Level 2! **studio

gray oxide
#

Try with a asset

#

You own

#
local UserInputService = game:GetService("UserInputService")
game:GetService("RunService").RenderStepped:Connect(function()
    UserInputService.MouseIcon = "rbxassetid://13459317886"
    UserInputService.MouseIconEnabled = true
end)
muted moss
#

It needs to be an local script

#

Well it is a local script I assume

wary python
wary python
#

Nvm I got it done