local gui = Instance.new("ScreenGui", game.CoreGui) gui.Name = "LoadstringUI" local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 300, 0, 200) frame.Position = UDim2.new(0.5, -150, 0.5, -100) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 local textBox = Instance.new("TextBox", frame) textBox.PlaceholderText = "Paste loadstring URL here" textBox.Size = UDim2.new(1, -20, 0, 40) textBox.Position = UDim2.new(0, 10, 0, 20) textBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) textBox.TextColor3 = Color3.fromRGB(255, 255, 255) textBox.ClearTextOnFocus = false local button = Instance.new("TextButton", frame) button.Text = "Execute" button.Size = UDim2.new(1, -20, 0, 40) button.Position = UDim2.new(0, 10, 0, 80) button.BackgroundColor3 = Color3.fromRGB(70, 130, 180) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.MouseButton1Click:Connect(function() local url = textBox.Text if url ~= "" then loadstring(game:HttpGet(url))() end end)