Skip to content

idkwhattoget/RBXSTUDAPI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

branding

RBXSTUDAPI

This is roblox API for studio. More specifically late 2014 studio API.

WARNING: All of this code is prone to any drastical change. Please ALWAYS keep backups before actually using a newer version.

How to set it up:

Put the following on .htaccess:

RewriteEngine on
RewriteCond %{THE_REQUEST} /([^.]+)\.php [NC]
RewriteRule ^ /%1 [NC,L,R]
 
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^ %{REQUEST_URI}.php [NC,L]

AddHandler application/x-httpd-php .ashx
AddType application/x-httpd-php .ashx
AddHandler application/x-httpd-php .aspx
AddType application/x-httpd-php .aspx

Create a database called "prodrbx", and use the following SQL code:

CREATE TABLE `asset` (
  `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
  `name` varchar(100) NOT NULL,
  `approved` varchar(100) NOT NULL,
  `creatorname` LONGTEXT NOT NULL,
  `creatorid` varchar(100) NOT NULL,
  `public` varchar(100) NOT NULL,
  `genre` LONGTEXT NULL,
  `itemtype` LONGTEXT NULL,
  `rsprice` LONGTEXT NOT NULL,
  `tkprice` LONGTEXT NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

and then use the following SQL code too:

CREATE TABLE `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
  `name` varchar(100) NOT NULL,
  `password` LONGTEXT NOT NULL,
  `email` LONGTEXT NOT NULL,
  `robux` varchar(100) NOT NULL,
  `ticket` varchar(100) NOT NULL,
  `status` LONGTEXT NOT NULL,
  `admin` varchar(100) NOT NULL,
  `termtype` varchar(100) NOT NULL,
  `treason` LONGTEXT NOT NULL,
  `tdate` varchar(100) NOT NULL,
  `creationdate` varchar(100) NOT NULL,
  `token` LONGTEXT NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Modify /game/ProdRBX/Configuration.php to use your own configs, create three folders "ModelUserCreated","PlaceUserCreated" and "UserRendered" inside of /Tools/ and you are done!

About

This is roblox API for studio.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 63.1%
  • PHP 18.2%
  • CSS 10.2%
  • ASP.NET 8.5%