Actulurus 🇨🇮 Profile picture
🇨🇮 Ivorian #Roblox programmer. Order from me → Actulurus#0055 📨 @BloxcodeRB
Aug 20, 2022 14 tweets 3 min read
📌 Daily #Roblox scripting thread 6! ✨

🔁 FOR-LOOPS #️⃣

👇 A #RobloxDev thread! 🔁 The for-loop is used to ITERATE a certain number of times.

🤔 But what does "iterating" mean?

♻️ It means for the loop to "run" or "refresh"
Aug 18, 2022 8 tweets 3 min read
📌Daily #Roblox scripting thread 5!

✅ WHILE LOOPS 🔁

A #RobloxDev thread 👇 While loops, or "while-true-do" loops, are one of the simplest loops in Lua. ✨

They're like if-statements, but they check the condition infinitely until stopped. 🔁

Here's an example 👇 Image
Aug 18, 2022 14 tweets 3 min read
📌 Daily #Roblox scripting thread 4!

#️⃣ TABLE INDEXING AND MORE 🔢

👇 A #RobloxDev thread! We've already talked about the difference between arrays and dictionaries and about what an index and value is. 🤔

Today, I'll be covering the more advanced stuff like inserting new values into a table and more! 👇
Aug 16, 2022 11 tweets 3 min read
📌 Daily #Roblox scripting thread 2!

🗄️ VARIABLES 🗂️

👇 A #RobloxDev thread! Image Variables - their purpose is to store data inside a script. 🗃️

They consist of a name and a value. 🤔

Their name is used to ACCESS the variable (read or write) and their value can be a number, string, boolean or even a table. I'll go over all the types later 👇