-- Vinsleepy Super Jump Spam AFK -- Created by Vinsleepy local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local VirtualUser = game:GetService("VirtualUser") -- Anti-AFK System LocalPlayer.Idled:Connect(function() VirtualUser:CaptureController() VirtualUser:ClickButton2(Vector2.new()) print("[Vinsleepy] Anti-AFK triggered at " .. os.date("%X")) end) -- Super Jump Spam Function local function SuperJumpSpam() while true do if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then local humanoid = LocalPlayer.Character.Humanoid -- Lompat terus menerus tanpa jeda humanoid.Jump = true end wait(0.1) -- Lompat setiap 0.1 detik (sangat cepat!) end end -- Simple GUI for Vinsleepy Super Jump local function CreateSuperJumpGUI() local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") local ToggleButton = Instance.new("TextButton") local StatusLabel = Instance.new("TextLabel") local InfoLabel = Instance.new("TextLabel") local CreditLabel = Instance.new("TextLabel") ScreenGui.Parent = game.CoreGui ScreenGui.Name = "Vinsleepy_SuperJump_GUI" Frame.Parent = ScreenGui Frame.Size = UDim2.new(0, 320, 0, 220) Frame.Position = UDim2.new(0.05, 0, 0.05, 0) Frame.BackgroundColor3 = Color3.fromRGB(35, 35, 45) Frame.Active = true Frame.Draggable = true local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 12) UICorner.Parent = Frame Title.Parent = Frame Title.Size = UDim2.new(1, 0, 0, 50) Title.BackgroundColor3 = Color3.fromRGB(25, 25, 35) Title.Text = "⚡ Vinsleepy SUPER JUMP" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 22 Title.Font = Enum.Font.GothamBold local TitleCorner = Instance.new("UICorner") TitleCorner.CornerRadius = UDim.new(0, 12) TitleCorner.Parent = Title InfoLabel.Parent = Frame InfoLabel.Size = UDim2.new(1, 0, 0, 40) InfoLabel.Position = UDim2.new(0, 0, 0.25, 0) InfoLabel.BackgroundTransparency = 1 InfoLabel.Text = "ULTRA FAST JUMP SPAM\nNo delays, continuous jumping" InfoLabel.TextColor3 = Color3.fromRGB(255, 200, 100) InfoLabel.TextSize = 12 InfoLabel.Font = Enum.Font.Gotham StatusLabel.Parent = Frame StatusLabel.Size = UDim2.new(1, 0, 0, 30) StatusLabel.Position = UDim2.new(0, 0, 0.45, 0) StatusLabel.BackgroundTransparency = 1 StatusLabel.Text = "🔴 Status: OFF" StatusLabel.TextColor3 = Color3.fromRGB(255, 100, 100) StatusLabel.TextSize = 18 StatusLabel.Font = Enum.Font.GothamBold ToggleButton.Parent = Frame ToggleButton.Size = UDim2.new(0.8, 0, 0, 55) ToggleButton.Position = UDim2.new(0.1, 0, 0.65, 0) ToggleButton.BackgroundColor3 = Color3.fromRGB(70, 70, 90) ToggleButton.Text = "⚡ ACTIVATE SUPER JUMP" ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleButton.TextSize = 18 ToggleButton.Font = Enum.Font.GothamBold local ButtonCorner = Instance.new("UICorner") ButtonCorner.CornerRadius = UDim.new(0, 10) ButtonCorner.Parent = ToggleButton CreditLabel.Parent = Frame CreditLabel.Size = UDim2.new(1, 0, 0, 20) CreditLabel.Position = UDim2.new(0, 0, 0.92, 0) CreditLabel.BackgroundTransparency = 1 CreditLabel.Text = "Created by Vinsleepy - SUPER JUMP SPAM MODE" CreditLabel.TextColor3 = Color3.fromRGB(150, 150, 200) CreditLabel.TextSize = 11 CreditLabel.Font = Enum.Font.Gotham local jumpEnabled = false local jumpThread = nil ToggleButton.MouseButton1Click:Connect(function() jumpEnabled = not jumpEnabled if jumpEnabled then -- Start super jump spam StatusLabel.Text = "🟢 Status: SUPER JUMPING!" StatusLabel.TextColor3 = Color3.fromRGB(100, 255, 100) ToggleButton.Text = "🛑 STOP Jump Spam" ToggleButton.BackgroundColor3 = Color3.fromRGB(180, 60, 60) jumpThread = coroutine.create(SuperJumpSpam) coroutine.resume(jumpThread) print("[Vinsleepy] SUPER JUMP SPAM Activated!") else -- Stop jump spam StatusLabel.Text = "🔴 Status: OFF" StatusLabel.TextColor3 = Color3.fromRGB(255, 100, 100) ToggleButton.Text = "⚡ ACTIVATE SUPER JUMP" ToggleButton.BackgroundColor3 = Color3.fromRGB(70, 70, 90) if jumpThread then coroutine.close(jumpThread) end print("[Vinsleepy] SUPER JUMP SPAM Stopped!") end end) return ScreenGui end -- Initialize Vinsleepy Super Jump wait(2) -- Auto enable basic Anti-AFK print("====================================") print("⚡ Vinsleepy SUPER JUMP SPAM Loaded!") print("✅ Basic Anti-AFK: Auto Enabled") print("🎯 Super Jump: Click ACTIVATE for non-stop jumping") print("====================================") -- Create GUI CreateSuperJumpGUI() -- Notification game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Vinsleepy SUPER JUMP", Text = "Super jump spam ready! Click ACTIVATE", Duration = 5, Icon = "rbxassetid://6723928012" })