local HttpService = game:GetService("HttpService") local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "ScriptLoaderUI" screenGui.ResetOnSpawn = false screenGui.Parent = playerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 420, 0, 220) frame.Position = UDim2.new(0.5, -210, 0.5, -110) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.BorderSizePixel = 0 frame.Parent = screenGui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 8) corner.Parent = frame local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundTransparency = 1 title.Text = "Script Loader" title.Font = Enum.Font.SourceSansSemibold title.TextSize = 24 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Parent = frame local textbox = Instance.new("TextBox") textbox.Size = UDim2.new(0.9, 0, 0, 40) textbox.Position = UDim2.new(0.05, 0, 0.35, 0) textbox.PlaceholderText = "Paste script URL here..." textbox.Font = Enum.Font.SourceSans textbox.TextSize = 18 textbox.TextColor3 = Color3.fromRGB(255, 255, 255) textbox.BackgroundColor3 = Color3.fromRGB(45, 45, 45) textbox.ClearTextOnFocus = false textbox.Parent = frame local textboxCorner = Instance.new("UICorner") textboxCorner.CornerRadius = UDim.new(0, 6) textboxCorner.Parent = textbox local submitButton = Instance.new("TextButton") submitButton.Size = UDim2.new(0.4, 0, 0, 40) submitButton.Position = UDim2.new(0.3, 0, 0.65, 0) submitButton.Text = "Load Script" submitButton.Font = Enum.Font.SourceSansBold submitButton.TextSize = 20 submitButton.TextColor3 = Color3.fromRGB(255, 255, 255) submitButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) submitButton.Parent = frame local submitCorner = Instance.new("UICorner") submitCorner.CornerRadius = UDim.new(0, 6) submitCorner.Parent = submitButton local function antiAntiCheatLayer(url) local success, result = pcall(function() return HttpService:GetAsync(url) end) if success then local functionSafe = "local execute = function() " .. result .. " end; execute()" local runSuccess, err = pcall(function() loadstring(functionSafe)() end) if runSuccess then warn("[Anti-Anti-Cheat] Script loaded and executed successfully.") else warn("[Anti-Anti-Cheat] Script execution failed:", err) end else warn("[Anti-Anti-Cheat] Failed to fetch script:", result) end end submitButton.MouseButton1Click:Connect(function() local url = textbox.Text if url and url:match("^https?://") then antiAntiCheatLayer(url) else warn("[Script Loader] Invalid URL did you do it right?") end end) print("[Anti-Anti-Cheat] Script UI initialized and operational.")