Roblox Premium Rooms
Increase Premium playtime by offering them an exclusive room, using the API. You can download the final plugin files at the bottom of this page.
Setting up your Plugin
Setting up a plugin is fairly simple. Insert a ModuleScript into the Workspace.CheckMeIn.Plugins
folder, name it what you want. Put in the following code:
As you may notice, the script looks pretty empty right now. That's because we have not yet made a Function
that will handle the check in process. There are numerous ways to handle the check in process. For the sake of this tutorial, I will explain 2 different approaches. Let's start with the first one:
Checking in on spawn
This code will check in Roblox Premium players when they first load into the game.
Alternatively, you could process the check in when the Player presses a button.
Checking in on button click
Insert a part with a ClickDetector in it and modify the path in the following code snippet accordingly.
This is just a simple example of what you can do with the ForceCheckIn
function.
Do you have suggestions for future tutorials? Let us know!
Plugin Files
Last updated