--Login Message 1.0 --by Mutor -- -- Bot = "[Sentry]" --Rename to yout main Px bot function Main() --frmHub:RegBot(Bot) --Uncomment this if you dont use your main Px bot end function NewUserConnected(user) ReadText(user) end OpConnected = NewUserConnected function ReadText(user) readfrom("LoginMsg.txt") while 1 do local line = read() if line == nil then break end user:SendPM(Bot,line) end readfrom() end