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
| <html> | |
| <head> | |
| <title>evil</title> | |
| </head> | |
| <body> | |
| <h1>:3</h1> | |
| <script> | |
| // get compiled function | |
| var func = makeJITCompiledFunction(); |
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
| -- Create a new DynamicImage | |
| local dynamicImage = Instance.new("DynamicImage") | |
| -- Set the size of the dynamic image | |
| local imageSize = Vector2.new(512, 512) | |
| dynamicImage.Size = imageSize | |
| -- Parent the dynamic image to the workspace or another GUI element | |
| dynamicImage.Parent = script.Parent -- MUST BE AN IMAGELABEL - WILL CRASH IF NOT |
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
| ---- Minecraft Crash Report ---- | |
| // I bet Cylons wouldn't have this problem. | |
| Time: 05/03/2022, 18:46 | |
| Description: Mod loading error has occurred | |
| java.lang.Exception: Mod Loading has failed | |
| at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:55) ~[forge-1.18.2-40.0.4-universal.jar%2374!/:?] {re:classloading} | |
| at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:169) ~[forge-1.18.2-40.0.4-universal.jar%2374!/:?] {re:classloading,pl:runtimedistcleaner:A} | |
| at net.minecraft.client.Minecraft.lambda$new$1(Minecraft.java:555) ~[client-1.18.2-20220228.144236-srg.jar%2370!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} |
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
| -- Lua 5.1+ base64 v3.0 (c) 2009 by Alex Kloss <alexthkloss@web.de> | |
| -- licensed under the terms of the LGPL2 | |
| -- character table string | |
| local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' | |
| -- encoding | |
| function enc(data) | |
| return ((data:gsub('.', function(x) | |
| local r,b='',x:byte() |
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
| script.Parent = game:GetService("LocalizationService") -- language building skills amr | |
| script.Name = "hjkl" | |
| function thread(fn) | |
| coroutine.resume(coroutine.create(fn)) | |
| end | |
| function stopthepress() | |
| local why = {} | |
| for i = 1 ,math.random(5,25) do |