Hi, how could i know when they bin killed while they are invisible? so i can reset it all back to show.. if anyone can make this code beta please do.. Thanks!
MakeMEInvisible:
local.player = parm.other
if (local.player.InvisibleMode == NIL)
{
local.player.InvisibleMode = "MeInvisible"
Wait 0.5
local.player stufftext ("say I am invisible")
local.player hide
local.player iprint ("You have 1 minute as an invisible player!")
wait 30
local.player iprint ("You have 30 seconds left as an invisible player!")
wait 20
local.player stopwatch 10
local.player iprint ("You have 10 seconds left as an invisible player!")
wait 10
local.player iprint ("You are no longer invisible!")
local.player show
local.player.InvisibleMode = NIL
}
End