First of all, let’s answer the question, “what is a sprite sheet”? Well in a nutshell, a sprite sheet is an image that is made up of other images. How is a sprite sheet useful? Sprite sheets have been used in a lot of games, especially in arcade machines where memory was very limited. Today, …
Author Archives: mawesome4ever
Metatables, the tool you need
Recently, i was invited to help dev a game with a group of people i haven’t worked with in a very long time. As you all may have known from one of my previous blog post about how i create objects with modulescripts, you may have noticed i use metatables and briefly mentioned it in …
Loadstring Pros and Cons
This will just be a simple pros and cons list of using Loadstring in Roblox Lua: Pros: -Your game can run lua code directly without you having to implement your own interpreter.-You can run commands from a 3rd party server without you being in the game- Your game can enable more creative freedom to players …
How I Make Objects In Roblox Lua
All concepts talked about in this post are based on my intrepretations and personal experience, take all this information with a grain of salt Firstly, i’m going to start of by saying that i’ll be going over a bit of an advanced topic so if you don’t know at least the basics of Lua, you …
Reading Documentation
The easiest way to read the documenation is to know what the text means!Let’s take a random API as an example. Head on over to https://developer.roblox.com/en-us/api-reference/class/Humanoid since that will be the example we use. Don’t get overwhelmed, the page you are seeing is a description of the Humanoid object and any other information you should …
String Manipulation
Note: This blog post only scratches the surface and focuses on a specific use case. You should read the documentation at Lua.org for a complete overview. Hello You,Before we get started, thank you for taking the time to read my post. Now for a bit of String Manipulation (keeping this brief).For our use case, we …
Welcome To My Blog!
Hello everyone, This blog site will mainly focus on Roblox Lua. Which consists of scripts that I personally made, scripts made by close friends or general Lua creations that I have had the pleasure in seeing the inner workings. That’s not all though, I’ll also be giving tutorials or general tips and tricks that could …