💢
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
@author depso (depthso) | |
@description Minecraft styled flight without using PlatformStand | |
-- Keybinds | |
W, S - Forward, Backwards | |
A, D - Left, Right | |
Shift, Q - Down | |
Space, E - Up | |
Ctrl - Sprint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--!strict | |
--[[ | |
@author depso (depthso) | |
@description Commonly used math functions | |
]] | |
type Vector = (CFrame|Vector3) | |
type Object = (Part|Model) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
@author depso (depthso) | |
@description Escape the stack into the executor's ENV | |
Example usage: | |
local Payload = require(game.ReplicatedStorage.ModuleScript) | |
--// fireSignal escape | |
local Remote = workspace:WaitForChild("RemoteEvent") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--// Created by depso | |
--// Libraries | |
local ImGui = loadstring(game:HttpGet('https://github.com/depthso/Roblox-ImGUI/raw/main/ImGui.lua'))() | |
--// Services | |
local Players = game:GetService("Players") | |
local TweenService = game:GetService("TweenService") | |
local ReplicatedStorage = game:GetService("ReplicatedStorage") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local API = "https://labs.bible.org/api/?passage=random&formatting=plain" | |
local Verse = game:HttpGet(API) | |
print(Verse) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
del %LocalAppData%\Roblox\LocalStorage\RobloxCookies.dat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import random | |
import requests | |
import string | |
import threading | |
Game_ID = input("Game ID: ") | |
Max_Players = 61 | |
Threads = 20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local MarketplaceService = game:GetService("MarketplaceService") | |
local PlaceId = game.PlaceId | |
local ProductInfo = MarketplaceService:GetProductInfo(PlaceId) | |
local UpdateDate = ProductInfo.Updated | |
local Pretty = UpdateDate:gsub("T", " : "):split(".")[1] --> Year-Month-Day : Hour:Minute:Second | |
print(Pretty) |