hello, so I’m making a module script.The one problem is one of the arugments is really long. How can I manipulate it to say what I want it to say? If you have any questions then feel free to ask
what? can you clarify on what you want
so, if you’ve ever used a module script it would say what each argument is. But the one problem is, when it says what the argument is its really long. Like this:
So how can I change what it says what the argument is?
If I understood you correctly, this should be what you are looking for.
function ModuleScript:Function(isThisEnabled : boolean)
-- Code
end
Where the passed variable isThisEnabled
is a boolean
.
Just put : in between, when you want to switch to the next passed variable just put a comma in between.
1 Like
THANK YOU SOO MUCH!! I didn’t know you could do this!!!
1 Like