
[Solved]Any ways to stop a function? - DevForum | Roblox
Mar 31, 2019 · You can only return once. Return basically returns to the previous scope. Or “Returns control to the previous scope”. Which would be whatever called the function. If you …
Is using functions inside a function a good idea? - Roblox
Sep 18, 2022 · Help and FeedbackScripting Support schaap5347 (Schaap) September 18, 2022, 3:50pm 1 Okay, so i want to know if using functions inside a function is a good idea. (Please …
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 …
Calling Module Scripts' Functions - Scripting Support - Roblox
Jul 17, 2023 · Two Questions. Do ModuleScripts need to have a table? For example, you would put local MyFunctions = {} function printf() print’ran script’ end And on require, you’d require …
How to do two functions at the same time? - Roblox
Apr 25, 2021 · I want to do two functions at the same time I couldn’t find a solution because I’m not very experienced at scripting. local function test () print ("test function started") wait (1) …
Functions and their uses - Scripting Support - Roblox
Oct 10, 2021 · I’ve watched quite a few tutorials on functions, yet I still don’t quite get what their purpose is. What also confuses me is arguments as they also don’t make sense. If I have this …
Luau's New Type Solver: How to utilize type functions! - Roblox
May 4, 2025 · Type functions are functions that run during analysis time, and they operate on types instead of runtime values. Basically, they are functions that can transform types and …
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 …
What are functions? - Scripting Support - Developer Forum - Roblox
Nov 21, 2020 · Functions | Documentation - Roblox Creator Hub Functions are blocks of code that can execute multiple times on command.
Is there any way to run multiple functions at the same time
Jul 26, 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 …