I just don’t get it, I’ve made sure the image label zindex is a larger number, the size is scaled to 1,1, its visible as well. But the mouse icon just doesn’t appear on screen, what am I doing wrong?
Local Script
-- Game Services
local RunService = game:GetService("RunService")
local UserInputService = game:GetService("UserInputService")
-- Player mouse
UserInputService.MouseIconEnabled = false
local Cursor = script:WaitForChild("Cursor")
UserInputService.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement then
local position = input.Position
Cursor.Position = UDim2.fromOffset(position.X, position.Y)
end
end)