Getting started
Hey there!
Steps to install
- First, get the model for ChatPlus here on Roblox
- Once you insert the model in your game, place the ChatPlus module on the server-side. It is recommended that you put it in ServerScriptService.
- Run the following code in your command bar and make sure to replace the
PATH_TO_CHATPLUS
to the path that leads to the ChatPlus module.p=PATH_TO_CHATPLUS f=p.ToLoadIntoChat for i,v in pairs(f:GetChildren()) do v.Parent=game:GetService("Chat") end f:Destroy()
- You're done! Feel free to mess around with the system!
Installing ChatPlus is the easy part!
It might be a good idea to also look at the system's gotchas to learn the ins-and-outs of the system before going ahead and configuring the system.