This is not the most important tutorial ever, but I’m sure at least someone will find it handy
Hey! As I’m sure some of you have wondered or some of you already know :
1 meter = 1 * (25/7) studs
=
1 meter = 3.5714285714286 studs
Using this math, and knowing 1 mile = ~1609 meters, we know that :
1 mile = 5746.4285714286 studs
After we know all of this, we can use a function like this one to convert meters into studs
local function convertStuds(meters)
local studs = meters * (25/7)
return studs
end
To instantly convert meters to studs, you can also do this :
local studs = meters * (25 / 7)
Thanks for reading, I know this is very simple but I hope at least someone can be helped from this!