of     1   

webgames95
#63561514Tuesday, February 28, 2012 2:23 AM GMT

Hello, I need some help with making a message hint appear when an admin types commands! Can You Help Me Please?
[rfa#hidefromsearch]
#63561822Tuesday, February 28, 2012 2:29 AM GMT

[rfa#hidefromsearch]
webgames95
#63561889Tuesday, February 28, 2012 2:30 AM GMT

ok can you give me the full code plz?
bl5eebryce
#63561891Tuesday, February 28, 2012 2:30 AM GMT

To get when a player says something use: game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) if player.Name == "webgames95" or player.Name == "bl5eebryce" then local message = Instance.new("Message", workspace) --Not sure if this still works message.Text = msg wait(3) message:Destroy() end) end) Also, check out: http://wiki.roblox.com/index.php/Function_Dump/String_Manipulation
webgames95
#63565357Tuesday, February 28, 2012 3:28 AM GMT

im looking for an message hint to appear when a admin says commands!
DXPower
#63566270Tuesday, February 28, 2012 3:46 AM GMT

A message hint? they haven't made that yet. Anyways, do the above, just edit it a little, and you'll be on your way. Here's a snippet of my admin commands:     if string.sub(string.lower(msg),1,8) == "command/" then        if speaker.Name == "webgames95" then        local q = string.gsub(string.lower(msg), "command/","")        local m = Instance.new("Message")        m.Text = speaker.Name .. "/" .. q        end     end All hail the Power of DX!
DXPower
#63566319Tuesday, February 28, 2012 3:47 AM GMT

Wait, forgot the remove message. DX wait(3) m:Destroy() All hail the Power of DX!
webgames95
#63572291Tuesday, February 28, 2012 8:52 AM GMT

ill try this i hope it works...

    of     1