Installation
This is a page designed to walk you through installing MathPlus and getting it up and running!
Roblox Studio Workflow
This section is to guide users who are using plain roblox studio to install the module!
Steps:
Go to the Github Repo -> Releases and download the latest "RBXM" file.
Once downloaded, drag it into your Roblox Project.
Put this file into somewhere inside of ReplicatedStorage. It doesn't matter where in ReplicatedStorage, it just needs to be inside of ReplicatedStorage.
Require MathPlus and use it!
If you don't know how to require a module:
In your code you should do something similar to this:
require(game:GetService("ReplicatedStorage"):WaitForChild("Path1"):WaitForChild("Path2"):WaitForChild("MathPlus"))
Replace :WaitForChild("Path1")
with where MathPlus is located!
Wally Workflow
Using Wally? Easy work!
Go to your "Wally.toml" file and put the following in under "[Dependencies]":
"MathPlus" = "iSophes/MathPlus"
Then run wally install and require it!
How to require a wally package?
Simple! This tutorial will show how to require MathPlus but it will work for any module you want!
require(game:GetService("ReplicatedStorage"):WaitForChild("Packages"):WaitForChild("MathPlus"))
Just replace "MathPlus" with whatever you want for other packages you install