04-09-2011, 07:31 PM 
		
	
	
		local words = {"Truth", "Cows", "Buildism", "Login"} 
while true do
local randomword = words[math.random(1,#words)]
print(randomword)
m = Instance.new("Message",Workspace)
m.Text = randomword
sleep(5)
m:Remove()
end
I can't quite get the message. Instead, make it so it appears on the chat as a chatted message.
	
	
while true do
local randomword = words[math.random(1,#words)]
print(randomword)
m = Instance.new("Message",Workspace)
m.Text = randomword
sleep(5)
m:Remove()
end
I can't quite get the message. Instead, make it so it appears on the chat as a chatted message.
![[Image: log.png?t=1302647037]](http://i284.photobucket.com/albums/ll20/sonic3895/log.png?t=1302647037)

