About 115,000 results
Open links in new tab
  1. CHEAT SHEET: Remote Events/Functions, Bindable …

    Jun 15, 2025 · Hi all! I put some time into making a reference sheet on how to use remote events, remote functions, bindable events, bindable functions, and unreliable remote events. I added …

  2. Global function? - Scripting Support - Developer Forum | Roblox

    Aug 16, 2020 · Would this print “Ok there”? Script 1: function printhello() print("Ok there") end Script 2: ScriptOne:printhello() tl;dr I forgot how global functions work. I can’t figure out how to …

  3. Is using functions inside a function a good idea? - Roblox

    Sep 18, 2022 · Okay, so i want to know if using functions inside a function is a good idea. (Please read everything before responding thx) So my goal was to make memory efficient code by …

  4. How to call a function in a Script from another Script ... - Roblox

    Jan 17, 2022 · I am trying to make one script call a function in another script. Both scripts are global scripts and non of them is a local script, using a remote event/function is not an option. …

  5. Is there any way to run multiple functions at the same time

    Jul 12, 2023 · As the title suggests, is there a way to run multiple functions at the same time, in the same script? Or do I need to use multiple scripts? There are a few other posts with a …

  6. [Solved]Any ways to stop a function? - DevForum | Roblox

    Mar 31, 2019 · This is a support category for help on everything related to scripting on the Roblox platform, from extremely basic to even the most technical of issues. Make sure to search the …

  7. How am I supposed to use Bindable Functions? And what are they …

    Mar 19, 2021 · Bindable functions are used for script to script communication (same type). For example, if you need one server script to connect with another server script, instead of using …

  8. How do I put functions inside a table? - DevForum | Roblox

    Jun 10, 2020 · As for the problem with your functions, since you are creating a variable each time the loop runs, the functions get called automatically. You also are not waiting before you are …

  9. Can i run two functions at the same time? - Roblox

    Jun 9, 2019 · Although Lua can only run tasks one by one, you can use coroutine to get the illusion that two functions are running at the same time. This method is efficient, or that’s what …

  10. What are functions? - Help and Feedback / Scripting Support

    Nov 21, 2020 · Functions are analogous to written procedures for a program. If a function is ran, the code will run in the specific order it was written in and operates as if you pasted the code in …