-
What do you want to achieve? Keep it simple and clear!
I want to know is it good and organized if you make small functions -
What is the issue? Include screenshots / videos if possible!
Don’t know is it actually good and will it help somehow
Well for my opinion organized functions sounds pretty good, because you can call more Names for every action in pairs, so yeah, I think it does help.
Functions, small or large, help with organization if they help reduce repetition in your code. Say you have these lines
print("eeee")
num.Value += 50
pancake:Clone().Parent = workspace
And you repeat them 3 or more times in your script, it’s beneficial to put them in a function and call that function, even if it’s just 3 lines. What if you want to increase num’s value by 100 instead of 50? You’d have to go and replace them everywhere that you called those lines, or you can just change it once in the function.
Or if you want to repeat the code but you want to specify how much to give depending on the usecase, functions can still help if you give a parameter for the increase in the value and then just call the function, giving the amount to put in the value.
In the end of the day you’re going to be organizing your code