BaseScript
Inherits from Instance
BaseScripts are the base class of all script types (ScriptInstance, LocalScript, ModuleScript). They can be parented to any instance.
Summary
Methods
Call:void
Methods
Call
BaseScript:Call(functionParameters: any)
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
functionParameters | any | - |
Calls a function on another script
Example
game["ScriptService"]["Script"]:Call("Foo", "Bar")
Local Functions cannot be ran using the Call function.