-- Ultimate Against Noobster Script by scripterblabla -- Speed, Jump + FREE 800 KILLS + MAX LEVEL 100 LOCK! local Players = game:GetService("Players") local player = Players.LocalPlayer local RunService = game:GetService("RunService") -- Create GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "NoobsterHack" screenGui.Parent = player:WaitForChild("PlayerGui") screenGui.ResetOnSpawn = false local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 250, 0, 270) mainFrame.Position = UDim2.new(0, 10, 0, 10) mainFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) mainFrame.BorderSizePixel = 2 mainFrame.BorderColor3 = Color3.fromRGB(255, 0, 0) mainFrame.Parent = screenGui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 45) title.Text = "Against Noobster Hacks" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextScaled = true title.BackgroundTransparency = 1 title.Font = Enum.Font.GothamBold title.Parent = mainFrame -- Speed Button local speedButton = Instance.new("TextButton") speedButton.Size = UDim2.new(0.95, 0, 0, 40) speedButton.Position = UDim2.new(0.025, 0, 0.20, 0) speedButton.Text = "🚀 Speed 100" speedButton.TextColor3 = Color3.fromRGB(255, 255, 255) speedButton.TextScaled = true speedButton.BackgroundColor3 = Color3.fromRGB(0, 162, 255) speedButton.Font = Enum.Font.Gotham speedButton.Parent = mainFrame speedButton.MouseButton1Click:Connect(function() local character = player.Character if character then local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = 100 speedButton.Text = "✅ Speed ON!" speedButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) wait(1) speedButton.Text = "🚀 Speed 100" speedButton.BackgroundColor3 = Color3.fromRGB(0, 162, 255) end end end) -- Level Button (NEW!) local levelButton = Instance.new("TextButton") levelButton.Size = UDim2.new(0.95, 0, 0, 40) levelButton.Position = UDim2.new(0.025, 0, 0.42, 0) levelButton.Text = "⭐ Level 100" levelButton.TextColor3 = Color3.fromRGB(255, 255, 255) levelButton.TextScaled = true levelButton.BackgroundColor3 = Color3.fromRGB(255, 215, 0) levelButton.Font = Enum.Font.Gotham levelButton.Parent = mainFrame _G.NoobLevelSet = false levelButton.MouseButton1Click:Connect(function() if _G.NoobLevelSet then return end _G.NoobLevelSet = true local success = pcall(function() local leaderstats = player:WaitForChild("leaderstats", 10) local lvl = leaderstats:WaitForChild("Level", 5) lvl.Value = 100 end) if success then levelButton.Text = "✅ Level 100 LOCKED!" levelButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) -- Lock it forever (anti-reset loop) spawn(function() while true do pcall(function() player.leaderstats.Level.Value = 100 end) wait(0.2) end end) wait(2) else levelButton.Text = "❌ No Level Stat" levelButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) wait(1.5) levelButton.Text = "⭐ Level 100" levelButton.BackgroundColor3 = Color3.fromRGB(255, 215, 0) _G.NoobLevelSet = false end levelButton.Text = "⭐ Level 100" levelButton.BackgroundColor3 = Color3.fromRGB(255, 215, 0) end) -- Jump Button local jumpButton = Instance.new("TextButton") jumpButton.Size = UDim2.new(0.95, 0, 0, 40) jumpButton.Position = UDim2.new(0.025, 0, 0.64, 0) jumpButton.Text = "🦘 Jump 100" jumpButton.TextColor3 = Color3.fromRGB(255, 255, 255) jumpButton.TextScaled = true jumpButton.BackgroundColor3 = Color3.fromRGB(255, 162, 0) jumpButton.Font = Enum.Font.Gotham jumpButton.Parent = mainFrame jumpButton.MouseButton1Click:Connect(function() local character = player.Character if character then local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.JumpPower = 100 jumpButton.Text = "✅ Jump ON!" jumpButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) wait(1) jumpButton.Text = "🦘 Jump 100" jumpButton.BackgroundColor3 = Color3.fromRGB(255, 162, 0) end end end) -- KILLS Button local killsButton = Instance.new("TextButton") killsButton.Size = UDim2.new(0.95, 0, 0, 40) killsButton.Position = UDim2.new(0.025, 0, 0.86, 0) killsButton.Text = "💀 800 Kills" killsButton.TextColor3 = Color3.fromRGB(255, 255, 255) killsButton.TextScaled = true killsButton.BackgroundColor3 = Color3.fromRGB(139, 0, 139) killsButton.Font = Enum.Font.Gotham killsButton.Parent = mainFrame _G.NoobKillsSet = false killsButton.MouseButton1Click:Connect(function() if _G.NoobKillsSet then return end _G.NoobKillsSet = true local success = pcall(function() local leaderstats = player:WaitForChild("leaderstats", 10) local kills = leaderstats:WaitForChild("Kills", 5) kills.Value = 800 end) if success then killsButton.Text = "✅ 800 Kills LOCKED!" killsButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) -- Lock it forever (anti-reset loop) spawn(function() while true do pcall(function() player.leaderstats.Kills.Value = 800 end) wait(0.2) end end) wait(2) else killsButton.Text = "❌ No Kills Stat" killsButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) wait(1.5) killsButton.Text = "💀 800 Kills" killsButton.BackgroundColor3 = Color3.fromRGB(139, 0, 139) _G.NoobKillsSet = false end killsButton.Text = "💀 800 Kills" killsButton.BackgroundColor3 = Color3.fromRGB(139, 0, 139) end) -- Make GUI draggable local dragging = false local dragInput, mousePos, framePos mainFrame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true mousePos = input.Position framePos = mainFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) mainFrame.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then dragInput = input end end) game:GetService("UserInputService").InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - mousePos mainFrame.Position = UDim2.new(framePos.X.Scale, framePos.X.Offset + delta.X, framePos.Y.Scale, framePos.Y.Offset + delta.Y) end end)