mirror of
https://github.com/unixtensor/Roblox-Elevator-Game.git
synced 2025-12-14 14:51:55 +00:00
17 lines
246 B
Lua
17 lines
246 B
Lua
--!optimize 2
|
|
--!native
|
|
--!strict
|
|
|
|
local Mouse = {}
|
|
|
|
local UIS = game:GetService("UserInputService")
|
|
|
|
function Mouse:DisablePointer()
|
|
UIS.MouseIconEnabled = false
|
|
end
|
|
|
|
function Mouse:EnablePointer()
|
|
UIS.MouseIconEnabled = true
|
|
end
|
|
|
|
return Mouse |