Loading one script from another

Hi,
I am trying to load a script from another script using the following syntax:

set my_script to load script (path to desktop as text) & “practice1”

I am getting an execution error :cry: saying:

"Can’t make “Apps & Documents:desktop folder:practice1” into a file.

Any idea how to solve this?
All help is much apprecited!
Best,
Arsalan :oops:

The “load script” scripting addition is pretty stupid in that it won’t automatically coerce a string into a file data type. Just include the “alias” keyword before the string:

set my_script to load script alias ((path to desktop as text) & "practice1")