Execute Script: Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>LocalChum
New page: == Introduction == '''Execute Script''' (Tools -> Execute Script) is a feature in Roblox Studio that allows you to run scripts in Roblox using an existing Lua file on your computer. ...
>LocalChum
Linkfix
Line 31: Line 31:
== See also ==
== See also ==


* [[Command bar]]
* [[Command Bar]]
* [[Scripting]]
* [[Script]]
* [[Script]]

Revision as of 11:42, 9 August 2011

Introduction

Execute Script (Tools -> Execute Script) is a feature in Roblox Studio that allows you to run scripts in Roblox using an existing Lua file on your computer.


Creating a script file

  1. Go in to the My Documents folder
  2. Right-click on a blank spot, go into New, and click New Text Document

Creating a new file

  1. Open (double-click) the new file
  2. Write the code print("Hello World!") in Notepad
  3. Save the file

Running a script

  1. Open Roblox Studio
  2. Make a new place (File -> New), or open an existing place (File -> Open)
  3. Go to Tools -> Execute Script, find the file you created
  4. Click "Open"

Congratulations! You just ran your first script using Execute Script!

Other information

Execute Script has the same security level as the command bar, thus making it easy to run long scripts with elevated permissions.

See also