Maths Functions
I used to use Roblox Studio and there were maths() function but microstudio doesn't have that. Is there an equivalent in MicroStudio? My main goal is to find if a number is in a certain times table.
I used to use Roblox Studio and there were maths() function but microstudio doesn't have that. Is there an equivalent in MicroStudio? My main goal is to find if a number is in a certain times table.
You can use all the functions available in JavaScript in the Math module.
Just add this code to your project.
Create a new file with the code and insert this code.
// javascript
global.Math = Math;
You can also create an associative list.
In MicroScript, each object is actually a list where you have a defined key and value.
obj = object
qwerty = 1234
end
print( obj.qwerty )