Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is it possible to change the player mouse?

Asked by 10 years ago

Hi,

I would like to change the players mouse in the game.

How do you do this?

Thanks Kieran

1 answer

Log in to vote
0
Answered by 10 years ago
enabled = true
mouse.Button1Down:connect(function()
    if not enabled then
        return
    end

    enabled = false
    mouse.Icon = "rbxasset://textures\\GunWaitCursor.png"

    wait(12)
    mouse.Icon = "rbxasset://textures\\GunCursor.png"
    enabled = true

end)

Ad

Answer this question