local Player = game.Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") if PlayerGui:FindFirstChild("EverydayBroExecutor") then PlayerGui.EverydayBroExecutor:Destroy() end local ScreenGui = Instance.new("ScreenGui", PlayerGui) ScreenGui.Name = "EverydayBroExecutor" ScreenGui.ResetOnSpawn = false local Main = Instance.new("Frame", ScreenGui) Main.Size, Main.Position, Main.BackgroundColor3 = UDim2.new(0, 550, 0, 350), UDim2.new(0.5, -275, 0.5, -175), Color3.fromRGB(236, 233, 216) Main.Active, Main.Draggable = true, true local function QuickIns(cls, props, parent) local inst = Instance.new(cls) for i, v in pairs(props) do inst[i] = v end inst.Parent = parent return inst end QuickIns("TextLabel", {Size = UDim2.new(0, 200, 0, 35), Position = UDim2.new(0, 10, 0, 5), BackgroundTransparency = 1, Text = "Its Everyday Bro", Font = 4, TextSize = 22, TextXAlignment = 0}, Main) local CodeBox = QuickIns("TextBox", {Size = UDim2.new(0, 390, 0, 255), Position = UDim2.new(0, 10, 0, 45), BackgroundColor3 = Color3.fromRGB(30, 30, 30), TextColor3 = Color3.new(1,1,1), Text = "", MultiLine = true, TextWrapped = true, ClearTextOnFocus = false, Font = 3, TextSize = 14, TextYAlignment = 0, TextXAlignment = 0}, Main) QuickIns("TextLabel", {Text = "Settings", Size = UDim2.new(0, 100, 0, 30), Position = UDim2.new(0, 410, 0, 45), Font = 4, TextSize = 20, BackgroundTransparency = 1}, Main) local function chk(txt, y) local b = QuickIns("TextButton", {Size = UDim2.new(0, 16, 0, 16), Position = UDim2.new(0, 410, 0, y), Text = "", BackgroundColor3 = Color3.new(1,1,1)}, Main) QuickIns("TextLabel", {Size = UDim2.new(0, 100, 0, 16), Position = UDim2.new(0, 430, 0, y), Text = txt, BackgroundTransparency = 1, TextXAlignment = 0, Font = 2, TextSize = 14}, Main) local act = false b.MouseButton1Click:Connect(function() act = not act b.Text = act and "X" or "" end) end chk("fe bypass mode", 75); chk("serverside mode", 95) QuickIns("TextLabel", {Size = UDim2.new(0, 125, 0, 175), Position = UDim2.new(0, 410, 0, 125), Text = "IT'S EVERYDAY BRO", TextColor3 = Color3.new(1,0,0), Font = 4, TextSize = 24, TextWrapped = true, BackgroundTransparency = 1}, Main) local function btn(txt, pos, clr) local b = QuickIns("TextButton", {Size = UDim2.new(0, 95, 0, 32), Position = pos, Text = txt, BackgroundColor3 = Color3.fromRGB(225, 225, 225), Font = 3, TextSize = 19}, Main) if clr then b.MouseButton1Click:Connect(function() CodeBox.Text = "" end) end return b end local Exe = btn("Execute", UDim2.new(0, 10, 0, 310)) btn("Clear", UDim2.new(0, 115, 0, 310), true) local Inj = btn("Inject", UDim2.new(1, -105, 0, 310)) Exe.MouseButton1Click:Connect(function() local s, e = pcall(loadstring(CodeBox.Text)) if not s then warn(e) end end) Inj.MouseButton1Click:Connect(function() local p = QuickIns("Frame", {Size = UDim2.new(0, 240, 0, 130), Position = UDim2.new(0.5, 0, 0.5, 0), AnchorPoint = Vector2.new(0.5,0.5), BackgroundColor3 = Color3.new(0.9,0.9,0.9), ZIndex = 20}, Main) QuickIns("TextLabel", {Size = UDim2.new(1, -20, 0, 60), Position = UDim2.new(0, 10, 0, 20), Text = "Injected Its Everyday Bro!", TextSize = 15, BackgroundTransparency = 1, ZIndex = 21}, p) local b = QuickIns("TextButton", {Size = UDim2.new(0, 70, 0, 22), Position = UDim2.new(0.5, -35, 0.8, 0), Text = "Okay", ZIndex = 21}, p) b.MouseButton1Click:Connect(function() p:Destroy() end) end)