Skip to content

Instantly share code, notes, and snippets.

View Zaikonurami's full-sized avatar
🥝
Purrrfect Furever

Zaiko Zaikonurami

🥝
Purrrfect Furever
View GitHub Profile
@Zaikonurami
Zaikonurami / roverify.aqualunem.js
Last active August 10, 2025 01:41
Roblox Verified Badge Script - RoVerify (Script for Greasy Fork)
// ==UserScript==
// @name ✅ RoVerify | Roblox Verification Badge
// @namespace https://github.com/Aqualunem
// @version 3.0
// @description A simple script that adds the Roblox verification badge to your name.
// @icon https://en.help.roblox.com/hc/article_attachments/7997146649876/Roblox_Verified_Badge.png
// @supportURL https://gist.github.com/Aqualunem/fbd0aba2579c62553f14db72a0a1b228
// @author Aqualunem
// @match https://www.roblox.com/*
// @match https://create.roblox.com/*
@Zaikonurami
Zaikonurami / EmoteProfileROBLOX.js
Created August 19, 2022 00:04
An easy script to get a ROBLOX Profile with an emote pic - To run just copy the code, paste on console and follow the instructions
$.ajax({
method: "POST",
url: "https://avatar.roblox.com/v1/avatar/thumbnail-customization",
contentType: "application/json",
// ------------ //
data: JSON.stringify({
//-> The configurations of the camera pos
"camera": {
//-> Ranges are inclusive.
"distanceScale": 2, // 0.5 to 4
@c0ldlimit
c0ldlimit / git_newrepo
Created November 16, 2012 17:14
Git: Push a new or existing repo to Github
# Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/c0ldlimit/vimcolors.git
git push -u origin master
# Push an existing repository from the command line