1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-06-30 11:47:45 +00:00
kawari/resources/scripts/commands/debug/ToggleInvisibility.lua

9 lines
270 B
Lua

required_rank = GM_RANK_DEBUG
function onCommand(args, player)
local sender = "[invis] "
local usage = "\nThis command makes the user invisible to all other actors."
player:toggle_invisibility()
player:send_message(sender.."Invisibility toggled.")
end