You can write your topic however you want, but you need to answer these questions:
I’m trying to change the player’s cursor to an image but it won’t work. I’ve tried using other people’s images it works but it doesn’t work with my image.
I’ve seen many people struggling with mouse.icon but none of the solutions I’ve seen sofar has worked.
local rms = game.ReplicatedStorage:WaitForChild("RMS")
local PGUI = game.Players.LocalPlayer.PlayerGui
local mouse = game.Players.LocalPlayer:GetMouse()
local cursor
local AppHandlerModule = require(game.ReplicatedStorage:WaitForChild("AppHandler"))
cursor = "http://www.roblox.com/asset/?id=14055126701"
mouse.Button1Down:Connect(function()
end)
mouse.Move:Connect(function()
local UIOBJS = PGUI:GetGuiObjectsAtPosition(mouse.X, mouse.Y)
-- sets mouse cur
while true do
wait(0.05)
mouse.Icon = cursor
end
end)