1_upz
(upz)
March 7, 2024, 1:10am
#1
Trying to change the icon on the mouse, still invisible… what do I do! I’ve even chucked it in a loop, still invisible!
I’ve tried these methods and I’ve changed the image id.
game:GetService("UserInputService").MouseIcon = "http://www.roblox.com/asset/?id=15694319414"
game:GetService("UserInputService").MouseIcon = "rbxassetid://15694319414"
local player = game:GetService("Players").LocalPlayer
local mouse = player:GetMouse()
mouse.Icon = "rbxassetid://15694319414"
hkep
(hkep)
March 7, 2024, 1:46am
#2
make sure the image is actually uploaded and not invisible itself. Also you should restart studio.
You can get the asset id from the Asset manager:
The studio i have open isn’t a published place, just a local one to test things while on the forum.
Your asset is not loading, something is wrong with it. Please add this as a local script to folder StarterPlayerScripts, should work with default tutorial asset.
local UserInputService = game:GetService("UserInputService")
UserInputService.MouseIcon = "rbxassetid://3400146391"
1_upz
(upz)
March 7, 2024, 2:09am
#4
Perfect thank you! I really should of tried reuploading the image, hopefully my stupidity assists someone else.
1 Like
system
(system)
Closed
March 21, 2024, 2:09am
#5
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.