Hi all, im new to this forum, bu so far it has helped me alot!
My server is always on Motel_Blacke_V3.
The ploblem is that there is room under the map, so sometimes when players use !unstuck it places them under the map
So i made an ulx command for !kill so when players glitch under the map they can kill themselfs.
somehow it works but when its working it
disables all the other commands like !untsuck and autorejoin.
Then it is the only command thats working.
This is the code im using:
function MyCommandF( ply, text )
if ( string.sub( text, 1, 8 ) == "!kill" ) then
ply:Kill()
end
return false
end
hook.Add( "PlayerSay", "MyCommandH", MyCommandF )
Help?