| description | This page lists all the global functions that you can use with localscripts in the script builder. |
|---|
{% hint style="info" %} Any global function that are not listed here that is otherwise normally a part of Roblox should keep their vanilla behavior. {% endhint %}
print(...: any): voidPrints into the script builder output instead of the Roblox one. If the format printing setting is enabled then it will format the message with repr.
warn(...: any): voidWarns into the script builder output instead of the Roblox one. If the format printing setting is enabled then it will format the message with repr.
error(message: any, level: number?): voidThrows an error, if the format printing setting is enabled then it will format the message with repr. Script errors are automatically caught by the script builder and outputted into your output.
printf(...: any): voidPrints into the script builder output with richtext enabled, ignoring the format printing setting. Useful if you want to print information to the user into the output.
warnf(...: any): voidWarns into the script builder output with richtext enabled, ignoring the format printing setting. Useful if you want to warn information to the user into the output.
printidentity(prefix: string?): voidExactly like printidentity on Roblox but will always print identity 2, and outputs into the script builder output.
{% hint style="warning" %} This is a deprecated Roblox function, and should not be used in new work. It's just added for compatibility. {% endhint %}
require(): neverThis function is disabled on client.
loadstring(contents: string, chunkname: string?): (((...) -> any)?, string?)A reimplementation of Roblox's loadstring function on client.
LoadLibrary(library: string): anyA reimplementation of Roblox's LoadLibrary feature which was removed.
List of libraries
- RbxGui
- RbxStamper
- RbxUtility
{% hint style="danger" %} This is a removed Roblox function, and should not be used in new work. It's just added for compatibility. {% endhint %}
NewScript(source: string, parent: Instance?, ...any): ScriptCreates and returns a new Script with the specified source under the specified parent, with optional run arguments.
{% hint style="info" %} If no parent argument is specified then it will default to Workspace. {% endhint %}
Examples
Creates a new script in workspace that prints "Hello World! I'm in " followed by its full name.
NewScript([[
printf("Hello World! I'm in", script:GetFullName())
]])Creates a new script in workspace, and prints the 3 values it's given.
NewScript([[
local var1, var2, var3 = ...
printf("var1:", var1)
printf("var2:", var2)
printf("var3:", var3)
]], workspace, "Hello I'm a string", Instance.new("Part", workspace), {"Tables work too!"})Alias for NewScript.
NewLocalScript(source: string, parent: Instance?, ...any): LocalScriptCreates and returns a new LocalScript with the specified source under the specified parent, with optional run arguments.
{% hint style="info" %} If no parent argument is specified then it will default to the script owner's PlayerGui. {% endhint %}
Examples
Creates a new local script in your player gui that prints "Hello World! I'm in " follwed by its full name.
NewLocalScript([[
printf("Hello World! I'm in", script:GetFullName())
]])Creates a new local script in your PlayerGui, and prints the 3 values it's given.
NewLocalScript([[
local var1, var2, var3 = ...
printf("var1:", var1)
printf("var2:", var2)
printf("var3:", var3)
]], nil, "Hello I'm a string", Instance.new("Part", workspace), {"Tables work too!"})
-- Pass nil as the parent if you want it to go to the default location.Creates a new local script in your player gui to send your key inputs to the server.
local Remote = Instance.new("RemoteEvent")
Remote.Name = "Input"
Remote.Parent = script
NewLocalScript([[
local UserInputService = game:GetService("UserInputService")
local Remote = ...
UserInputService.InputBegan:Connect(function(Input)
if UserInputService:GetFocusedTextBox() ~= nil then -- Don't send if typing.
return
end
if Input.UserInputType ~= Enum.UserInputType.Keyboard then
return
end
Remote:FireServer(Input.KeyCode)
end)
]], nil, Remote)
-- Parents the LocalScript to the default location and gives it the RemoteEvent.
Remote.OnServerEvent:Connect(function(Player, KeyCode)
if Player ~= owner then -- We don't want other players spoofing!
return
end
if typeof(KeyCode) ~= "EnumItem" then
return
end
print(KeyCode.Name) -- Print the keycode's name.
end)Alias for NewLocalScript.