Creating a basic UI with Finity
Last updated
Was this helpful?
Last updated
Was this helpful?
In this basic tutorial, we'll be learning how to create a basic menu with examples for how to use each cheat module.
First things first, load the library using loadstring
and assign the returned value to a variable of your choice.
Or, if you don't understand what I just said, feel free to skid this onto your text editor:
Then, you're going to need to create a new window to house all of your amazing UI elements! Make sure you have the library above included in your code. Preferably before the constructor is called
Alongside the creation of the window, we're also going to need to set a ToggleKey. A ToggleKey allows the user to press a key to hide or show the menu. Pretty simple.
You can do that like so:
After that, you need to create some categories. Let's create two categories: "Visuals"
and "Aimbot"
. I've named the variables accordingly as it helps with organization later on:
Now that we have our categories, it's time to create sectors for each of them. I recommend separating them into sub-categories.
For example: if you have a "Visuals" tab, maybe have sectors like "Player ESP", "Zombie ESP", "Item ESP".
Let's create some sectors for our Visuals
category. Again, I've also named the variabeld accordingly as it helps with organization later on. It's important to do this because you dont want to end up with variables like ESP1
or ESP2
as can get really confusing after a while.
We can repeat the same process for our Aimbot
category.
And voilà! Now we have two categories, each with their respective sectors. Here's a GIF of what we have so far:
The GIF above shows what you get from the 13 lines of code documented up until this point. "Where are the cheats?!?!?!?" is something you might be wondering. Well, we haven't created any yet! I'll talk about how to create each one and the "special" things you can do to them.
Now, checkboxes are next to nothing when it comes to complexity. You have a button that toggles something to be either true
or false
. This was the first thing that I added into Finity. Why? I don't really know.
To create a checkbox (or literally any cheat module), all you have to do is run the :Cheat()
method on any sector (with the correct parameters)!
Here, I'm going to create an Enable toggle for each of the sectors that require one:
This here creates checkboxes under each of that categories that require one. Here's a list of parameters for the :Cheat()
method
Unlike checkboxes, sliders offer a more specific way of choosing a value, allowing the user to choose between a custom range of numbers.
Let's add sliders with reasonable ranges to reasonable places:
I've condensed the code as well as added minimum values, maximum values and suffixes for the sliders. In this code sample, you can see how setting custom cheat data will be used. All you have to do is give a table of data values to assign to the cheat in an array as the 4th argument. It sound like a lot, I know, but it's really not. The best way to learn is to read, edit and attempt to make sense of things you don't understand.
Dropdowns are a handy way to get the user to choose from a table of options. When using dropdowns, make sure to include an options array in the data table in the 4th parameter.
Let's add a couple of these to our window by adding the following code:
Want a user to be able to enter some text into your cheat for very custom values? Textboxes are the way to go. You can also set the placeholder of the textbox so your user knows what they're entering.
A good use for a textbox would be searching for a player to teleport to or looping through an array of things for a given string.
Lastly, we'll implement some textboxes into our sectors:
Another nice feature that Finity offers is buttons. Buttons allow for a user to fire the callback without any arguments.
That's pretty much it. There's no extra data that you need to add!
Now, let's create a some buttons where reasonable:
Last but not least, labels are a good way of giving some extra information to the user about the cheat, or to use as section spacers.
Let's give ourselves some credit by creating a new category and some new sectors:
Now that we have covered everything, let's take a look at the final product!
Congratulations! You have made a very nice & sleek UI. Everything works fine & you can now share this with your fellow V3rmies!
So, now that you're finished with this, take a moment to think about what you learned. There was quite a lot to cover. Also, I don't have anything wrong with copy-pasting the code that was written here. If anyone calls you a skid then send them this, because you have full permission to Finity & any code written on this web-page anyway you would like. Use it to make your own script hub, release cool cheats to others, sell premium scripts, I really don't care.
You should have learned mostly everything there is to offer with Finity and how to use it to create your own epic & hot user interfaces. Here's a run-down of everything covered in this article:
Creating UI elements using Finity
Categories,
Sectors,
Each type of cheat module,
Usefulness of each type of cheat module
Creating fully-functioning user interfaces using Finity
There's plenty more to come with Finity, so don't expect this to be it. Feel free to message me on V3rmillion with any questions or concerns about Finity & its features.
Yes! You are allowed to use Finity however you would like. The one thing I ask is for people to tell their interested friends or communities about Finity.
Another thing I ask of you is to not claim this as your own and/or sell this library. It's free-to-use for everybody & should remain that way.
V3rmillion.net Thread Introduction Documentation Source Discord Server
Pretty neat, right? Textboxes are surely the joy of the world