local player = game:GetService("Players").LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "inf_la_vaccas" gui.Parent = player:WaitForChild("PlayerGui") gui.ResetOnSpawn = false local main = Instance.new("Frame") main.Size = UDim2.new(0, 220, 0, 90) main.Position = UDim2.new(0.2, 0, 0.3, 0) main.BackgroundColor3 = Color3.fromRGB(35, 35, 35) main.BorderSizePixel = 0 main.Active = true main.Draggable = true main.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundTransparency = 1 title.Text = "inf la vaccas" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 20 title.Font = Enum.Font.GothamBold title.Parent = main local button = Instance.new("TextButton") button.Size = UDim2.new(0, 180, 0, 45) button.Position = UDim2.new(0.5, -90, 0.5, -10) button.BackgroundColor3 = Color3.fromRGB(70, 150, 255) button.Text = "inf la vacca" button.TextSize = 18 button.TextColor3 = Color3.fromRGB(0, 0, 0) button.Font = Enum.Font.GothamBold button.Parent = main local popup = Instance.new("Frame") popup.Size = UDim2.new(0, 260, 0, 60) popup.Position = UDim2.new(0.5, -130, -1, 0) popup.BackgroundColor3 = Color3.fromRGB(30, 30, 30) popup.BorderSizePixel = 0 popup.Visible = false popup.Parent = gui local poptxt = Instance.new("TextLabel") poptxt.Size = UDim2.new(1, 0, 1, 0) poptxt.BackgroundTransparency = 1 poptxt.Text = "Made by ScriptDude999" poptxt.TextSize = 20 poptxt.TextColor3 = Color3.fromRGB(255, 255, 255) poptxt.Font = Enum.Font.GothamBold poptxt.Parent = popup local function showPopup() popup.Visible = true popup:TweenPosition(UDim2.new(0.5, -130, 0.05, 0), "Out", "Quad", 0.5) wait(2) popup:TweenPosition(UDim2.new(0.5, -130, -1, 0), "In", "Quad", 0.5) wait(0.5) popup.Visible = false end button.MouseButton1Click:Connect(function() showPopup() for i = 1, 100 do local args = {7} game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Spin"):InvokeServer(unpack(args)) end end)