1 | local player = game:GetService("Players").LocalPlayer |
2 | |
3 | local Library = loadstring(game:HttpGet("https://pastecode.dev/raw/o579xt86/mobileWally.jpg",true))() |
4 | |
5 | local Window = Library:CreateWindow("Window") |
6 | |
7 | Window:AddFolder("Folder") |
8 | |
9 | Window:AddButton({text = "Anti-cheat bypass", callback = function() |
10 | loadstring(game:HttpGet("https://pastecode.dev/raw/0jvzh3eh/antiInstanxe-antixheatbypass_lulaslollipop.zip", true))() |
11 | print("antixheat") |
12 | end}) |
13 | |
14 | Window:AddToggle({text = "Godmode", callback = function(v) |
15 | getgenv().skriptgodmode = not v |
16 | print(v) |
17 | end}) |
18 | |
19 | Window:AddToggle({text = "ESP Toggle", callback = function(v) |
20 | getgenv().esptog = v |
21 | print(v) |
22 | end}) |
23 | |
24 | Library:Init() |
25 | |
26 | local esp_settings = { |
27 | textsize = 8, |
28 | colour = 255, |
29 | 255, |
30 | 255, |
31 | } |
32 | local gui = Instance.new("BillboardGui") |
33 | local esp = Instance.new("TextLabel", gui) |
34 | gui.Name = "kraxked esp" |
35 | gui.ResetOnSpawn = false |
36 | gui.AlwaysOnTop = true |
37 | gui.LightInfluence = 0 |
38 | gui.Size = UDim2.new(1.75, 0, 1.75, 0) |
39 | esp.BackgroundColor3 = Color3.fromRGB(255, 255, 255) |
40 | esp.Text = "" |
41 | esp.Size = UDim2.new(0.0001, 0.00001, 0.0001, 0.00001) |
42 | esp.BorderSizePixel = 4 |
43 | esp.BorderColor3 = Color3.new(esp_settings.colour) |
44 | esp.BorderSizePixel = 0 |
45 | esp.Font = "GothamSemibold" |
46 | esp.TextSize = esp_settings.textsize |
47 | esp.TextColor3 = Color3.fromRGB(esp_settings.colour) -- text colour |
48 | |
49 | task.spawn(function() |
50 | game:GetService("RunService").RenderStepped:Connect(function() |
51 | if getgenv().esptog then |
52 | for i, v in pairs(game:GetService("Players"):GetPlayers()) do |
53 | if |
54 | v ~= game:GetService("Players").LocalPlayer |
55 | and v.Character.Head:FindFirstChild("kraxked esp") == nil |
56 | then |
57 | esp.Text = "{" .. v.Name .. "}" |
58 | gui:Clone().Parent = v.Character.Head |
59 | end |
60 | end |
61 | else |
62 | for i, v in pairs(game:GetService("Players"):GetPlayers()) do |
63 | if |
64 | v ~= game:GetService("Players").LocalPlayer |
65 | and v.Character.Head:FindFirstChild("kraxked esp") |
66 | then |
67 | local eze = v.Character.Head:FindFirstChild("kraxked esp") |
68 | eze:Destroy() |
69 | end |
70 | end |
71 | end |
72 | end) |
73 | end) |
74 | |
75 | task.spawn(function() |
76 | while task.wait() do |
77 | local parts = workspace:GetPartBoundsInRadius(player.Character:WaitForChild("HumanoidRootPart").Position, 10) |
78 | for _, part in ipairs(parts) do |
79 | part.CanTouch = getgenv().skriptgodmode |
80 | end |
81 | end |
82 | end) |