ID:146808
 
Code:
hud55
name=""
icon_state="WTButtonLeft"
New(client/C) screen_loc = "3,2", C.screen+=src
Click()
var/msg=text
if("usr.key=DaGoat787")
world<<"<I>GM:<U>WSay</U> [usr] = [msg]"
else
world<<"<I><U>Wsay</U> [usr] = [msg]"


Problem description:Need help with that fast plz if anyone cna help right away.It just doens't wanna come up to type something to say.

I don't think it should be compiled at all. You are telling msg to be equal to a "text" var which you didn't define that. I think you meant this.

msg = input("Enter a messege" as text
In response to Vizuke
Ohh i see now thank though viz :P
if("usr.key=DaGoat787")

That is always true. You want
if(usr.key=="DaGoat787")