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

10 lines
255 B
Lua
Raw Normal View History

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