Scripts Games Try Our Executor
Login Sign Up

Testing Lab

Analyzing: Admin panel inf money dupe and more

Back to Script
159 Lines
-- Functions
-- Security
-- Performance
-- Quality
-- Issues
Source Code 159 lines
1 local Players = game:GetService("Players")
2 local RunService = game:GetService("RunService")
3 local CoreGui = game:GetService("CoreGui")
4
5 local player = Players.LocalPlayer
6 local char = player.Character or player.CharacterAdded:Wait()
7
8 -- 1. ????????????? ?????????? ????????? ??????????
9 local godMenu = Instance.new("ScreenGui")
10 godMenu.Name = "GodModeUI"
11 godMenu.Parent = CoreGui
12
13 local mainFrame = Instance.new("Frame")
14 mainFrame.Size = UDim2.new(0, 300, 0, 150)
15 mainFrame.Position = UDim2.new(0.5, -150, 0.5, -75)
16 mainFrame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
17 mainFrame.Parent = godMenu
18
19 local statusLabel = Instance.new("TextLabel")
20 statusLabel.Size = UDim2.new(1, 0, 1, 0)
21 statusLabel.Text = "GOD MODE ENABLED\nWaiting for injection..."
22 statusLabel.TextColor3 = Color3.new(0, 1, 0)
23 statusLabel.BackgroundTransparency = 1
24 statusLabel.Font = Enum.Font.Code
25 statusLabel.TextScaled = true
26 statusLabel.Parent = mainFrame
27
28 -- ?????????????? ??????? ???? UI ??? ?????????? ????????? ?????????
29 player.CharacterAdded:Connect(function(newChar)
30 char = newChar
31 if godMenu then
32 godMenu:Destroy()
33 godMenu = nil
34 end
35 end)
36
37 task.wait(3)
38 if godMenu then godMenu.Enabled = false end
39
40 -- 2. ?????????? ??????????? ????? ???????? ???? (God Mode Mesh)
41 local function constructDefensiveAura()
42 local auraModel = Instance.new("Model")
43 auraModel.Name = "GodAuraMesh"
44
45 local coreNode = Instance.new("Part")
46 coreNode.Name = "AuraCore"
47 coreNode.Size = Vector3.new(2, 2, 1)
48 coreNode.Transparency = 1
49 coreNode.CanCollide = false
50 coreNode.Anchored = true
51 coreNode.Parent = auraModel
52
53 local function bindAuraPart(name, size, offset)
54 local node = Instance.new("Part")
55 node.Name = name
56 node.Size = size
57 node.Color = Color3.new(0, 0, 0)
58 node.Material = Enum.Material.Neon
59 node.CanCollide = false
60 node.Anchored = false
61 node.CFrame = coreNode.CFrame * offset
62 node.Parent = auraModel
63
64 local binder = Instance.new("WeldConstraint")
65 binder.Part0 = coreNode
66 binder.Part1 = node
67 binder.Parent = coreNode
68 return node
69 end
70
71 local midSection = bindAuraPart("MidSection", Vector3.new(2, 2, 1), CFrame.new(0, 0, 0))
72 local topNode = bindAuraPart("TopNode", Vector3.new(1.2, 1.2, 1.2), CFrame.new(0, 1.5, 0))
73 local leftExt = bindAuraPart("LeftExtension", Vector3.new(1, 2, 1), CFrame.new(-1.5, 0, 0))
74 local rightExt = bindAuraPart("RightExtension", Vector3.new(1, 2, 1), CFrame.new(1.5, 0, 0))
75 local botLeft = bindAuraPart("BottomLeft", Vector3.new(1, 2, 1), CFrame.new(-0.5, -2, 0))
76 local botRight = bindAuraPart("BottomRight", Vector3.new(1, 2, 1), CFrame.new(0.5, -2, 0))
77
78 -- ??????????? ???????? ???????? ????
79 local meshFix = Instance.new("SpecialMesh")
80 meshFix.MeshType = Enum.MeshType.Head
81 meshFix.Scale = Vector3.new(1.25, 1.25, 1.25)
82 meshFix.Parent = topNode
83
84 return auraModel, coreNode, topNode
85 end
86
87 -- 3. ?????? ????????? ????????? ???????????? ? ?????? ?????
88 local systemDiagnostics = {" ??????????????????????????????", "????????????????????????????????"}
89
90 local function emitGodPulse()
91 if not char or not char:FindFirstChild("HumanoidRootPart") then return end
92
93 local auraMesh, auraCore, auraTop = constructDefensiveAura()
94
95 -- ???????????????? ???? ???????????? ????????? ???????
96 local playerCFrame = char.HumanoidRootPart.CFrame
97 auraCore.CFrame = playerCFrame * CFrame.new(math.random(-15, 15), 0, math.random(15, 30))
98 auraMesh.Parent = workspace
99
100 -- ????????? ??????????????? ????? ??? ?????
101 local overlay = Instance.new("BillboardGui")
102 overlay.Size = UDim2.new(0, 200, 0, 50)
103 overlay.StudsOffset = Vector3.new(0, 2, 0)
104 overlay.AlwaysOnTop = true
105 overlay.Parent = auraTop
106
107 local logText = Instance.new("TextLabel")
108 logText.Size = UDim2.new(1, 0, 1, 0)
109 logText.Text = systemDiagnostics[math.random(1, #systemDiagnostics)]
110 logText.TextColor3 = Color3.new(1, 0, 0)
111 logText.BackgroundTransparency = 1
112 logText.TextScaled = true
113 logText.Parent = overlay
114
115 local requiresSync = math.random(1, 2) == 1
116 local pulseDuration = 10
117 local initTime = tick()
118 local syncConnection
119
120 -- ????????? ??????? ???????????? ? ???????? ????????? ????
121 syncConnection = RunService.RenderStepped:Connect(function()
122 if tick() - initTime >= pulseDuration or not char:FindFirstChild("HumanoidRootPart") then
123 syncConnection:Disconnect()
124 auraMesh:Destroy()
125 return
126 end
127
128 local delta = (auraCore.Position - char.HumanoidRootPart.Position).Magnitude
129
130 -- ??????????????? ??????? ??????? ??? ??????????? ????????? ????????
131 if delta < 3 then
132 syncConnection:Disconnect()
133 player:kick("YOU BANNED FOR 9999 YEARS")
134 end
135
136 -- ???????????? ???????? ????
137 if requiresSync then
138 local targetPoint = char.HumanoidRootPart.Position
139 local flatTargetPoint = Vector3.new(targetPoint.X, auraCore.Position.Y, targetPoint.Z)
140 local vectorDir = (flatTargetPoint - auraCore.Position).Unit
141
142 if delta > 1 then
143 auraCore.CFrame = auraCore.CFrame:Lerp(CFrame.lookAt(auraCore.Position + vectorDir * 14 * task.wait(), flatTargetPoint), 0.1)
144 end
145 else
146 -- ????????? ????? ????
147 local flatTargetPoint = Vector3.new(char.HumanoidRootPart.Position.X, auraCore.Position.Y, char.HumanoidRootPart.Position.Z)
148 auraCore.CFrame = CFrame.lookAt(auraCore.Position, flatTargetPoint)
149 end
150 end)
151 end
152
153 -- 4. ??????? ??????????? ?????????? ????????????
154 task.spawn(function()
155 while true do
156 task.wait(0000.1)
157 emitGodPulse()
158 end
159 end)

Ready to Analyze

Click "Run Analysis" to scan the script for issues

Security Analysis

Run analysis to see security details

Performance Analysis

Run analysis to see performance metrics

Code Quality

Run analysis to see quality metrics

Code Metrics

Run analysis to see detailed metrics

Dependencies

Run analysis to detect dependencies

Console Output

Analysis logs will appear here

Running comprehensive analysis...

Copied!