The developer has not uploaded a project yet...

Glisticals – Full Source Code Bundle

Glisticals is a complete project inspired by platforms like Roblox — built for creators, communities, and developers who want to explore how such ecosystems work under the hood. This package includes everything from rendering to frontend, giving you the tools to study, customize, and build your own experiments.

🔹 What’s Inside

  • FauxGL OCI FaaS Renderer – A scalable rendering solution designed to handle on-demand graphics in a function-as-a-service environment.

  • Client Source Code – The player-facing client that connects to the platform.

  • Workshop Source Code – Core workshop tools for content creation and management.

  • Docker Files (Nginx + Laravel) – Pre-configured environments to get you running quickly.

  • Secure Website Source Code – A robust backend setup with authentication and protection baked in.

  • Frontend Source Code – A clean, customizable interface for users.

🔹 Why This Project?

Glisticals is more than just a collection of files — it’s a learning platform. Whether you’re:

  • A developer curious about how platforms like Roblox are structured,

  • A student looking to dive into modern web stacks with Docker, Laravel, and Nginx,

  • Or a tinkerer who wants to remix and expand on an existing virtual ecosystem,

…this project gives you the full picture.

🔹 Key Features

  • Modular codebase (easy to expand and adapt).

  • Secure and scalable web backend.

  • Ready-to-run Docker setup.

  • Transparent client + workshop systems.

Perfect For:

Developers, students, indie creators, and anyone who wants to study, remix, or prototype Roblox-like systems in a self-hosted environment.

⚠️ Note: This is not Roblox, and is not affiliated with Roblox Corporation. It is a standalone project for educational and creative purposes. Also this was released due to Roblox's recent drama with protecting predators.

Purchase

Buy Now£50.00 GBP or more

In order to download this project you must purchase it at or above the minimum price of £50 GBP. You will get access to the following files:

conf_glistical.zip 2.4 kB
GlisticalClient (1).zip 323 MB
glistical-site.zip 10 MB
nginx-docker-image-main.zip 2.2 kB
laravel-docker-image-main.zip 1.6 kB
BrickBuilder-GlisticalWorkshop.zip 6 MB

Comments

Log in with itch.io to leave a comment.

What is your discord username?

how to set it up

Prerequisites


  • Docker
  • Linux suggested but not required. Volume mounts on WSL are extremely slow and cause high load times

Notes on Local Development


  • The renderer is an external service. All requests to the Renderer helper class will be ignored in local.

Setup


  1. Login to Gitlab registry
    docker login registry.gitlab.com 

    Username is Gitlab username, password being a personal access token from settings

  2. Rename .env.example to .env
  3. Modify APP_URL and SESSION_DOMAIN to the domain you wish to use. Tests use http://laravel-site.test
  4. Overwrite DNS to point your local computer to that domain. Linux is located at /etc/hosts macOS at /private/etc/hosts and Windows at C:\Windows\System32\Drivers\etc\hosts.
    127.0.0.1 laravel-site.test 127.0.0.1 api.laravel-site.test 127.0.0.1 admin.laravel-site.test 
  5. Run setup commands
    docker-compose run webpack npm install docker-compose run composer composer install docker-compose run app php artisan key:generate docker-compose run app php artisan migrate:fresh --seed 
  6. Site can be started with docker-compose up -d. Note that this will keep it always running and you will have to run docker-compose down to turn it off.
    • Optional services like the queue worker and scheduler can be started with docker-compose --profile all-services up -d
  7. Default username and password are Test Name password

Development Tools


Anyone not using VSCode is invalid.

Suggested extensions

Code completion suggestions for Intelephense can be written using

docker-compose run app php artisan ide-helper:model -M docker-compose run app php artisan ide-helper:generate 

Running Tests


Laravel tests are run with docker-compose run app php artisan test

PHPStan tests are run with docker-compose run app ./vendor/bin/phpstan analyse --memory-limit=2G

What is your discord username?

Not sure why it says play in browser, but you host the game either from your pc or the server the website is hosted on and play from there!