-- Gui to Lua -- Version: 3.2 -- Instances: local Ejecutor = Instance.new("ScreenGui") local AlonsoExploit = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local ScriptText = Instance.new("TextBox") local Execute = Instance.new("TextButton") local Clear = Instance.new("TextButton") --Properties: Ejecutor.Name = "Ejecutor" Ejecutor.Parent = game.Coregui AlonsoExploit.Name = "Alonso Exploit" AlonsoExploit.Parent = Ejecutor AlonsoExploit.BackgroundColor3 = Color3.fromRGB(36, 36, 36) AlonsoExploit.BorderColor3 = Color3.fromRGB(0, 0, 0) AlonsoExploit.BorderSizePixel = 0 AlonsoExploit.Position = UDim2.new(0.00927452557, 0, 0.0191237833, 0) AlonsoExploit.Size = UDim2.new(0, 403, 0, 260) AlonsoExploit.Active = true AlonsoExploit.Draggable = true TextLabel.Parent = AlonsoExploit TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.0129761426, 0, 0.0268160887, 0) TextLabel.Size = UDim2.new(0, 391, 0, 44) TextLabel.Font = Enum.Font.Unknown TextLabel.Text = "Alonso Exploit" TextLabel.TextColor3 = Color3.fromRGB(221, 214, 211) TextLabel.TextScaled = true TextLabel.TextSize = 14.000 TextLabel.TextStrokeColor3 = Color3.fromRGB(59, 172, 115) TextLabel.TextWrapped = true ScriptText.Name = "ScriptText" ScriptText.Parent = AlonsoExploit ScriptText.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ScriptText.BorderColor3 = Color3.fromRGB(0, 0, 0) ScriptText.BorderSizePixel = 0 ScriptText.Position = UDim2.new(0.0129761798, 0, 0.192403942, 0) ScriptText.Size = UDim2.new(0, 389, 0, 155) ScriptText.Font = Enum.Font.Oswald ScriptText.PlaceholderColor3 = Color3.fromRGB(30, 239, 232) ScriptText.Text = "Print(\"Working\")" ScriptText.TextColor3 = Color3.fromRGB(0, 0, 0) ScriptText.TextSize = 31.000 ScriptText.TextWrapped = true Execute.Name = "Execute" Execute.Parent = AlonsoExploit Execute.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Execute.BorderColor3 = Color3.fromRGB(0, 0, 0) Execute.BorderSizePixel = 0 Execute.Position = UDim2.new(0.0129761426, 0, 0.813244879, 0) Execute.Size = UDim2.new(0, 192, 0, 42) Execute.Font = Enum.Font.Highway Execute.Text = "Execute" Execute.TextColor3 = Color3.fromRGB(0, 0, 0) Execute.TextSize = 34.000 Execute.MouseButton1Down:Connect(function() script.Parent.Execute.MouseButton1Click:Connect(function() require(script.Parent.ExecuteModule)(script.Parent.ScriptBox.Text)() end) end) Clear.Name = "Clear" Clear.Parent = AlonsoExploit Clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Clear.BorderColor3 = Color3.fromRGB(0, 0, 0) Clear.BorderSizePixel = 0 Clear.Position = UDim2.new(0.502375543, 0, 0.813244879, 0) Clear.Size = UDim2.new(0, 193, 0, 42) Clear.Font = Enum.Font.SourceSansBold Clear.Text = "Clear" Clear.TextColor3 = Color3.fromRGB(0, 0, 0) Clear.TextSize = 34.000 Clear.MouseButton1Down:Connect(function() script.Parent.Clear.MouseButton1Click:Connect(function() script.Parent.ScriptBox.Text = "" end) end) -- Module Scripts: local fake_module_scripts = {} do -- AlonsoExploit.ExecuteModule local script = Instance.new('ModuleScript', AlonsoExploit) script.Name = "ExecuteModule" local function module_script() script.Parent.Execute.MouseButton1Click:Connect(function() require(script.Parent.ExecuteModule)(script.Parent.ScriptBox.Text)() end) end fake_module_scripts[script] = module_script end -- Scripts: local function KQSMR_fake_script() -- AlonsoExploit.Main Script local script = Instance.new('LocalScript', AlonsoExploit) local req = require local require = function(obj) local fake = fake_module_scripts[obj] if fake then return fake() end return req(obj) end script.Parent.Clear.MouseButton1Click:Connect(function() script.Parent.ScriptBox.Text = "" end) script.Parent.Execute.MouseButton1Click:Connect(function() require(script.Parent.ExecuteModule)(script.Parent.ScriptBox.Text)() end) end coroutine.wrap(KQSMR_fake_script)()