I am trying to put an image above the position of the mouse and stays above the mouse even if it moves. How will I accomplish this?
Any help will be appreciated.
I am trying to put an image above the position of the mouse and stays above the mouse even if it moves. How will I accomplish this?
Any help will be appreciated.
You can simply set the images position with this event
local Player = game.LocalPlayer
local mouse = Player:GetMouse()
local Image = script.Parent -- Or you ImageLabel path
mouse.Move:Connect(function(x,y)
Image.Position = UDim2.fromOffset(x,y)
end)