-- Instances local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local ScriptBox = Instance.new("TextBox") local ExecuteButton = Instance.new("TextButton") local ClearButton = Instance.new("TextButton") local UIGradient = Instance.new("UIGradient") local LoadingFrame = Instance.new("Frame") local LoadingText = Instance.new("TextLabel") local ScriptListFrame = Instance.new("Frame") local InfiniteYieldButton = Instance.new("TextButton") local DexExplorerButton = Instance.new("TextButton") local EzHubButton = Instance.new("TextButton") local ToggleButton = Instance.new("TextButton") -- Button to toggle visibility -- Parent to PlayerGui ScreenGui.Name = "RenzzExecutor" ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") -- Loading Frame LoadingFrame.Name = "LoadingFrame" LoadingFrame.Parent = ScreenGui LoadingFrame.BackgroundColor3 = Color3.new(0, 0, 0) LoadingFrame.Size = UDim2.new(1, 0, 1, 0) LoadingText.Name = "LoadingText" LoadingText.Parent = LoadingFrame LoadingText.AnchorPoint = Vector2.new(0.5, 0.5) LoadingText.Position = UDim2.new(0.5, 0, 0.5, 0) LoadingText.Size = UDim2.new(0.5, 0, 0.1, 0) LoadingText.BackgroundTransparency = 1 LoadingText.Text = "Wait for Renzz Executor♠️" LoadingText.Font = Enum.Font.SourceSansBold LoadingText.TextColor3 = Color3.new(1, 1, 1) LoadingText.TextScaled = true -- Main Frame MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.AnchorPoint = Vector2.new(0.5, 0.5) MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0) MainFrame.Size = UDim2.new(0.5, 0, 0.5, 0) -- Slightly increased size MainFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) MainFrame.Visible = false MainFrame.Active = true MainFrame.Draggable = true -- UI Gradient for outline UIGradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 0, 0)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(0, 255, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(0, 0, 255)) }) UIGradient.Parent = MainFrame -- Title Title.Name = "Title" Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0.15, 0) Title.BackgroundTransparency = 1 Title.Text = "Renzz Executor" Title.Font = Enum.Font.SourceSansBold Title.TextColor3 = Color3.new(1, 1, 1) Title.TextScaled = true -- Script Box ScriptBox.Name = "ScriptBox" ScriptBox.Parent = MainFrame ScriptBox.Position = UDim2.new(0.05, 0, 0.2, 0) ScriptBox.Size = UDim2.new(0.9, 0, 0.5, 0) ScriptBox.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1) ScriptBox.Text = "" ScriptBox.Font = Enum.Font.SourceSans ScriptBox.TextColor3 = Color3.new(1, 1, 1) ScriptBox.TextSize = 18 ScriptBox.MultiLine = true ScriptBox.ClearTextOnFocus = false -- Execute Button ExecuteButton.Name = "ExecuteButton" ExecuteButton.Parent = MainFrame ExecuteButton.Position = UDim2.new(0.05, 0, 0.75, 0) ExecuteButton.Size = UDim2.new(0.4, 0, 0.15, 0) ExecuteButton.BackgroundColor3 = Color3.new(0, 1, 0) ExecuteButton.Text = "Execute" ExecuteButton.Font = Enum.Font.SourceSansBold ExecuteButton.TextColor3 = Color3.new(1, 1, 1) ExecuteButton.TextSize = 20 -- Clear Button ClearButton.Name = "ClearButton" ClearButton.Parent = MainFrame ClearButton.Position = UDim2.new(0.55, 0, 0.75, 0) ClearButton.Size = UDim2.new(0.4, 0, 0.15, 0) ClearButton.BackgroundColor3 = Color3.new(1, 0, 0) ClearButton.Text = "Clear" ClearButton.Font = Enum.Font.SourceSansBold ClearButton.TextColor3 = Color3.new(1, 1, 1) ClearButton.TextSize = 20 -- Script List Frame ScriptListFrame.Name = "ScriptListFrame" ScriptListFrame.Parent = MainFrame ScriptListFrame.Position = UDim2.new(1.05, 0, 0, 0) ScriptListFrame.Size = UDim2.new(0.25, 0, 1, 0) ScriptListFrame.BackgroundColor3 = Color3.new(0.15, 0.15, 0.15) -- Infinite Yield Button InfiniteYieldButton.Name = "InfiniteYieldButton" InfiniteYieldButton.Parent = ScriptListFrame InfiniteYieldButton.Position = UDim2.new(0.1, 0, 0.05, 0) InfiniteYieldButton.Size = UDim2.new(0.8, 0, 0.2, 0) InfiniteYieldButton.BackgroundColor3 = Color3.new(0.2, 0.5, 0.9) InfiniteYieldButton.Text = "Infinite Yield" InfiniteYieldButton.Font = Enum.Font.SourceSansBold InfiniteYieldButton.TextColor3 = Color3.new(1, 1, 1) InfiniteYieldButton.TextSize = 18 InfiniteYieldButton.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Infinite-Yield_500"))() end) -- Dex Explorer Button DexExplorerButton.Name = "DexExplorerButton" DexExplorerButton.Parent = ScriptListFrame DexExplorerButton.Position = UDim2.new(0.1, 0, 0.3, 0) DexExplorerButton.Size = UDim2.new(0.8, 0, 0.2, 0) DexExplorerButton.BackgroundColor3 = Color3.new(0.2, 0.5, 0.9) DexExplorerButton.Text = "Dex Explorer" DexExplorerButton.Font = Enum.Font.SourceSansBold DexExplorerButton.TextColor3 = Color3.new(1, 1, 1) DexExplorerButton.TextSize = 18 DexExplorerButton.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Dex-Explorer-27052"))() end) -- Ez Hub Button EzHubButton.Name = "EzHubButton" EzHubButton.Parent = ScriptListFrame EzHubButton.Position = UDim2.new(0.1, 0, 0.55, 0) EzHubButton.Size = UDim2.new(0.8, 0, 0.2, 0) EzHubButton.BackgroundColor3 = Color3.new(0.2, 0.5, 0.9) EzHubButton.Text = "Ez Hub" EzHubButton.Font = Enum.Font.SourceSansBold EzHubButton.TextColor3 = Color3.new(1, 1, 1) EzHubButton.TextSize = 18 EzHubButton.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Ez-Hub_168"))() end) -- Toggle Button (for showing/hiding GUI) ToggleButton.Name = "ToggleButton" ToggleButton.Parent = ScreenGui ToggleButton.Position = UDim2.new(0.5, -25, 0, 10) ToggleButton.Size = UDim2.new(0, 50, 0, 50) ToggleButton.BackgroundColor3 = Color3.new(1, 1, 1) ToggleButton.Text = "®️" -- Teks "®️" untuk tombol ToggleButton.Font = Enum.Font.SourceSansBold ToggleButton.TextColor3 = Color3.new(0, 0, 0) ToggleButton.TextSize = 40 -- Ukuran teks dibesarkan ToggleButton.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) -- Make Toggle Button Draggable ToggleButton.Active = true ToggleButton.Draggable = true -- Execute Button Logic ExecuteButton.MouseButton1Click:Connect(function() local scriptToExecute = ScriptBox.Text if scriptToExecute and scriptToExecute ~= "" then local success, errorMsg = pcall(function() loadstring(scriptToExecute)() end) if not success then warn("Error executing script: " .. errorMsg) end else warn("No script to execute.") end end) -- Clear Button Logic ClearButton.MouseButton1Click:Connect(function() ScriptBox.Text = "" -- Clear the script box text end) -- Loading Screen Logic (Ensure 5 seconds of loading) task.spawn(function() wait(5) -- Wait for 5 seconds LoadingFrame:Destroy() -- Remove the loading screen MainFrame.Visible = true -- Show the main GUI end)