Quote: "When I walk onto a trigger I want text to display on the screen. Can someone tell me the script for this? "
Displaying text or images on the screen is called a Heads Up Display, or HUD for short.
If you search HUD or HUDS, then you should find what you are looking for.
In fact these things are covered in the PDF Manual that was included with FPSC found in your DOCS folder.
There are many example scripts around for these basic things, just search using the 'Thread Subject Search' Box below.
I found this
Have text appear when you walk near something.
A: Here's how I do it. You can open Notepad and paste this in. Then name it whatever you want, just remember to change the extension to FPI, and put it in the scriptbank.
;Artificial Intelligence Script
;Header
desc = My Own HUD
;Triggers
:state=0:hudreset,hudx=50,hudy=90,hudimagefine=languagebank\english\gamecore\text\myownhud.tga,hudname=myownhud,hudhide=1,hudmake=display,state=1
:state=1,plrwithinzone=1:hudshow=myownhud,state=2
:state=2,plrwithinzone=0:hudunshow=myownhud,state=1
;End of Script
on page 73 of Nickydude's "Official Community Guide to FPSCreator"