Skip to content

Instantly share code, notes, and snippets.

$Key = "HKCU:\Software\ROBLOX Corporation\Environments\roblox-player"
while ($true)
{
$CurrentValue = (Get-ItemProperty -Path $Key -Name "LaunchExp").LaunchExp
if ($CurrentValue -eq "InApp")
{
#Write-Output "Value is InApp."
Set-ItemProperty -Path $Key -Name "LaunchExp" -Value "InBrowser"
}
@juliaoverflow
juliaoverflow / ok.js
Last active October 27, 2025 18:29
ROBLOX
/*
!! The feature that uses this endpoint has recently started rolling out to users.
!! See `App > Avatar > Profile Picture Editor`
!!
!! You may continue using this script, the only advantage is being able to
!! customize FullBody and Closeup independently.
*/
@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")
--!strict
-- Fork of https://github.com/Validark/Roblox-TS-Libraries/tree/master/delay-spawn-wait
-- This adds an equivalent to `spawn`, as well as `HeartbeatSpawn` and `ThreadSpawn`.
local RunService = game:GetService("RunService")
local Heartbeat = RunService.Heartbeat
type GenericFunction = (...any?) -> ...any?
type QueueFunction = BindableEvent | GenericFunction
-- parry this you stupid deferred mode
local RbxScriptConnection = {}
RbxScriptConnection.ClassName = "RBXScriptConnection"
RbxScriptConnection.__index = RbxScriptConnection
function RbxScriptConnection.new(BindableEvent, Function)
return setmetatable({
Connected = true;
--------------------------------------------------------------------------
-- @ CloneTrooper1019, 2020-2021
-- Thread.lua
--------------------------------------------------------------------------
local Thread = {}
--------------------------------------------------------------------------
-- Task Scheduler
--------------------------------------------------------------------------
-- Consider using Thread instead!
-- https://gist.github.com/CloneTrooper1019/538f0ab2541ef98912a2694dd8d274e7
local RunService = game:GetService("RunService")
local threads = {}
RunService.Stepped:Connect(function ()
local now = tick()
local resumePool
@Dekkonot
Dekkonot / sha1.lua
Last active October 13, 2023 02:07
Implementation of the SHA-1 hashing algorithm for Roblox
-- I claim no copyright over this source code and you can use it for whatever you want. Just don't sue me.
local ASSERTIONS_ENABLED = true -- Whether to run several checks when the module is first loaded and when a message is preprocessed.
local INIT_0 = 0x67452301
local INIT_1 = 0xEFCDAB89
local INIT_2 = 0x98BADCFE
local INIT_3 = 0x10325476
local INIT_4 = 0xC3D2E1F0
-- this is an old version
-- see: https://github.com/Reselim/Base64
local FILLER_CHARACTER = 61
local alphabet = {}
local indexes = {}
for index = 65, 90 do table.insert(alphabet, index) end -- A-Z
for index = 97, 122 do table.insert(alphabet, index) end -- a-z
@0xjac
0xjac / private_fork.md
Last active December 11, 2025 14:26
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare git@github.com:usi-systems/easytrace.git