Skip to content

Instantly share code, notes, and snippets.

View EvercyanRBX's full-sized avatar
💭
Suffering in Studio

Evercyan EvercyanRBX

💭
Suffering in Studio
View GitHub Profile
@EvercyanRBX
EvercyanRBX / Roblox DataStore Cleanup.py
Created December 4, 2025 06:21
Used to clean up many of my old DataStores from INFINITY RPG that saved each player's data under a unique DataStore years ago
# Deletes all number-only (including negative) data store names for clean-up, but can be adapted for general mass data store deletion.
# Even though it should work OK, you should still double check your important data stores (e.g. active user data) before data stores are deleted in 30 days to make sure it didn't queue them for deletion.
import requests, os, pprint, re, time
universe_id = 142847746
next_page_token = ""
cookie = os.environ["EVCYROBLOSECURITY"]
session = requests.session()
@EvercyanRBX
EvercyanRBX / Remotes.luau
Created January 14, 2025 15:00
Wrapper for Roblox remote objects
--!strict
--[[
Remotes // Evercyan @ 2024 Dec.
Wrapper for remotes which offers vastly superior functionality over traditional remotes.
### Parameter Types
--> Require other machines to send over proper types and check them before running any code connected to these Remote events.
--> This can be done through the use of syntax similar to Luau typechecking.
@EvercyanRBX
EvercyanRBX / SoftShutdown2.lua
Last active April 22, 2024 22:08
SoftShutdown v1.21
--[[
Evercyan @ June 27, 2023
SoftShutdown2 v1.21
Read more..
https://devforum.roblox.com/t/softshutdown2/1156844
]]
--> Services
local TeleportService = game:GetService("TeleportService")