set userCueNumber to "1" -- Use this to identify the cue whose wall clock properties you are trying to set
-- Prompt to get the time
set triggerTime to text returned of (display dialog "What time will the park close?" default answer "")
-- Parse the time into hours & minutes
set currentTIDs to AppleScript's text item delimiters
set AppleScript's text item delimiters to ":"
set triggerHours to text item 1 of triggerTime
set triggerMinutes to text item 2 of triggerTime
set AppleScript's text item delimiters to currentTIDs
-- Set the cue's properties
tell cue userCueNumber of front workspace
set wall clock trigger to enabled -- This may not be essential, but it does need to be on!
set wall clock hours to triggerHours
set wall clock minutes to triggerMinutes
end tell