{"id":21328235,"url":"https://github.com/depthso/rbx-exploit-classes","last_synced_at":"2025-03-16T00:16:45.658Z","repository":{"id":236707561,"uuid":"793006813","full_name":"depthso/RBX-Exploit-Classes","owner":"depthso","description":"🐈 This repository contains useful modules for the development scripts for exploits I have written.","archived":false,"fork":false,"pushed_at":"2024-11-26T18:44:17.000Z","size":29,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-22T12:47:35.391Z","etag":null,"topics":["depso","roblox","roblox-hack","roblox-modules","roblox-script","roblox-scripts"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/depthso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-28T06:52:27.000Z","updated_at":"2025-01-06T12:09:55.000Z","dependencies_parsed_at":"2024-04-30T22:25:37.326Z","dependency_job_id":"1cfed1aa-b321-473d-a20a-4eb9a34638c9","html_url":"https://github.com/depthso/RBX-Exploit-Classes","commit_stats":null,"previous_names":["depthso/rbx-exploit-classes"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/depthso%2FRBX-Exploit-Classes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/depthso%2FRBX-Exploit-Classes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/depthso%2FRBX-Exploit-Classes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/depthso%2FRBX-Exploit-Classes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/depthso","download_url":"https://codeload.github.com/depthso/RBX-Exploit-Classes/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243806092,"owners_count":20350775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["depso","roblox","roblox-hack","roblox-modules","roblox-script","roblox-scripts"],"created_at":"2024-11-21T21:25:37.285Z","updated_at":"2025-03-16T00:16:45.633Z","avatar_url":"https://github.com/depthso.png","language":"Lua","readme":"# Exploit classes\nThis repository contains classes for exploits and scripts I have created. \\\nPlease open an issue if there is any problems regarding the script itself. \\\n🔨 Please mention me when integrating these libraries. \n\n## Loadstring:\n```lua\nlocal function LoadURL(Url) -- Let's change the world\n  local Payload = request({\n    Url = Url,\n    Method = 'GET',\n    Headers = {\n      ['Content-Type'] = 'text/plain',\n    }\n  })\n  return loadstring(Payload.Body)()\nend\n\n-- Change LibraryName to your prefered library\n-- Names will be listed under each section\nlocal LibraryName = \"Memory.lua\"\n\n-- The name of this variable will also change for better reading\n-- It will be in the brackets of the library name\nlocal Library = LoadURL(`https://raw.githubusercontent.com/depthso/RBX-Exploit-Classes/main/{LibraryName}`)\n```\n\n## Memory\n\u003cdetails\u003e\n\u003csummary\u003eClick to expand 📜\u003c/summary\u003e \n  \n### Library name (MemEdit): \n```lua\nlocal LibraryName = \"Memory.lua\"\n```\n\n### Table/Arrary search:\n```lua\n-- This is an example of a table scan\n-- For a table that holds the values: Tased, Crouching\n\nlocal threadsTable = MemEdit:Scan(nil, \"table\", {\"Tased\", \"Crouching\", \"ProneIdle\"})\nassert(threadsTable, \"Table was not found!\")\n\nfor Name, Thread in next, threadsTable do\n  print(Name, Thread)\nend\n```\n\n### Changing Upvalues\n```lua\n-- This example shows the manipulation of upvalues\n\nlocal LocalPlayer = game:GetService(\"Players\").LocalPlayer\nlocal ClientInputHandler = LocalPlayer.PlayerScripts:WaitForChild(\"ClientInputHandler\")\n\n-- Generate a class for the local or module script\nlocal ScriptBase = MemEdit:GetBase(ClientInputHandler)\nlocal Stamina = ScriptBase:Scan(\"upvalue\", 12)\n\n-- Let's change the stamina to be infinite\nStamina:WriteMem(math.huge)\n```\n\u003c/details\u003e\n\n## Group rank checker\n\u003cdetails\u003e\n\u003csummary\u003eClick to expand 📜\u003c/summary\u003e\n  \n### Library name (GroupWatch): \n```lua\nlocal LibraryName = \"Group check.lua\"\n```\n\n### Checking player ranks in a group\n```lua\n-- Append the group to the watch list\nlocal Watch = GroupWatch:Watch({\n  Id = 13824744,\n  MinRank = 254,\n  -- MaxRank = 255,\n  Callback = function(Player: Player, Rank: number, self)\n    -- Group data pulled from the Group service will be appended\n    print(Player, \"is an admin for\", self.Name)\n  end,\n})\n\n-- Scan all players that are already present\n-- The script will automatically check newly joined players\n-- Only if .Enabled in the options is true\nGroupWatch:ScanPlayers()\n\n-- Example of ignoring the group\nWatch.Enabled = false\n```\n\u003c/details\u003e\n\n## Playerlist editor\n##### This may become a single module and therefore deleted!\n\n\u003cdetails\u003e\n\u003csummary\u003eClick to expand 📜\u003c/summary\u003e\n  \n### Library name (Playerlist): \n```lua\nlocal Team = Playerlist:GetTeam(\"Patients\")\n\n-- Change the background color of a team header\nTeam:SetBackgroundProperty(\"BackgroundColor3\", Color3.fromRGB(0,0,255))\n```\n![image](https://github.com/user-attachments/assets/4a453c91-55bc-4301-901e-55f5c5a1bb01)\n\n\n### Changing a player's entry \n```lua\nlocal Player = Playerlist:GetPlayer(LocalPlayer)\n\n-- Change the player's icon (usually premium icon)\nPlayer:SetPlayerIcon(\"rbxassetid://12385082386\")\n\n-- Change text color\nPlayer:SetPlayerNameProperty(\"TextColor3\", Color3.fromRGB(255, 255, 0))\n\n-- Chnage background color\nPlayer:SetBackgroundProperty(\"BackgroundColor3\", Color3.fromRGB(0,0,255))\nPlayer:SetBackgroundProperty(\"BackgroundTransparency\", 0.7)\n```\n![image](https://github.com/user-attachments/assets/5d9225c0-f85d-41bb-9133-46f7fe9010fe)\n\n\u003c/details\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdepthso%2Frbx-exploit-classes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdepthso%2Frbx-exploit-classes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdepthso%2Frbx-exploit-classes/lists"}