-- Criação do Mini GUI local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local UIListLayout = Instance.new("UIListLayout") local ToggleButton = Instance.new("TextButton") local CrucifixButton = Instance.new("TextButton") local DemonCrucifixButton = Instance.new("TextButton") local FloppaPlushButton = Instance.new("TextButton") -- Executa função ao entrar no jogo local dread = game:GetObjects("rbxassetid://82755345385333")[1] dread.Parent = game.Players.LocalPlayer.Backpack -- Propriedades do ScreenGui ScreenGui.Name = "MiniGui" ScreenGui.Parent = game.CoreGui -- Propriedades do Frame Frame.Name = "MainFrame" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Frame.Position = UDim2.new(0.1, 0, 0.1, 0) Frame.Size = UDim2.new(0, 200, 0, 150) Frame.BorderSizePixel = 2 Frame.Visible = true -- Botão de abrir/fechar GUI ToggleButton.Name = "ToggleButton" ToggleButton.Parent = Frame ToggleButton.Text = "Toggle GUI" ToggleButton.Size = UDim2.new(0, 100, 0, 40) ToggleButton.Position = UDim2.new(0, 0, 0, 0) -- Ajustado para o topo ToggleButton.BackgroundColor3 = Color3.fromRGB(150, 150, 150) ToggleButton.TextColor3 = Color3.fromRGB(0, 0, 0) ToggleButton.MouseButton1Click:Connect(function() Frame.Visible = not Frame.Visible end) -- Configuração do layout dentro do frame UIListLayout.Parent = Frame UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Padding = UDim.new(0, 5) -- Configuração do botão "Crucifix" CrucifixButton.Name = "CrucifixButton" CrucifixButton.Parent = Frame CrucifixButton.Text = "Crucifix" CrucifixButton.Size = UDim2.new(0, 200, 0, 40) CrucifixButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100) CrucifixButton.TextColor3 = Color3.fromRGB(255, 255, 255) CrucifixButton.MouseButton1Click:Connect(function() local dread = game:GetObjects("rbxassetid://76250330254265")[1] dread.Parent = game.Players.LocalPlayer.Backpack end) -- Configuração do botão "Demon Crucifix" DemonCrucifixButton.Name = "DemonCrucifixButton" DemonCrucifixButton.Parent = Frame DemonCrucifixButton.Text = "Demon Crucifix" DemonCrucifixButton.Size = UDim2.new(0, 200, 0, 40) DemonCrucifixButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100) DemonCrucifixButton.TextColor3 = Color3.fromRGB(255, 255, 255) DemonCrucifixButton.MouseButton1Click:Connect(function() local dread = game:GetObjects("rbxassetid://119489879129277")[1] dread.Parent = game.Players.LocalPlayer.Backpack end) -- Configuração do botão "Floppa Plush" FloppaPlushButton.Name = "FloppaPlushButton" FloppaPlushButton.Parent = Frame FloppaPlushButton.Text = "Floppa Plush" FloppaPlushButton.Size = UDim2.new(0, 200, 0, 40) FloppaPlushButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100) FloppaPlushButton.TextColor3 = Color3.fromRGB(255, 255, 255) FloppaPlushButton.MouseButton1Click:Connect(function() local dread = game:GetObjects("rbxassetid://113333146691008")[1] dread.Parent = game.Players.LocalPlayer.Backpack end)