Sign up
Login
New
Trending
Archive
English
English
Sign up
Login
New Paste
Add Image
local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local CoreGui = game:GetService("CoreGui") local StarterGui = game:GetService("StarterGui") local ReplicatedStorage = game:GetService("ReplicatedStorage") local TweenService = game:GetService("TweenService") local LocalPlayer = Players.LocalPlayer local Camera = workspace.CurrentCamera -- [[ CLEANUP ]] -- if CoreGui:FindFirstChild("GibHubVerticalUI") then CoreGui.GibHubVerticalUI:Destroy() end -- [[ GLOBAL SETTINGS ]] -- getgenv().EspStatus = false getgenv().InfJump = false getgenv().SpeedStatus = false getgenv().DesyncActive = false getgenv().UnwalkActive = false getgenv().BatMasterActive = false getgenv().AntiKBActive = false getgenv().AutoGrabActive = false -- [[ STORAGE ]] -- local Tracers = {} local savedAnims = {} local watcher local alignOri, attach0, aimbotConnection -- [[ ANTI-KB / RAGDOLL SOURCE ]] -- local PlayerModule = require(LocalPlayer:WaitForChild("PlayerScripts"):WaitForChild("PlayerModule")) local Controls = PlayerModule:GetControls() local BlockedStates = { [Enum.HumanoidStateType.Ragdoll] = true, [Enum.HumanoidStateType.FallingDown] = true, [Enum.HumanoidStateType.Physics] = true, [Enum.HumanoidStateType.Dead] = true } local RemoteKeywords = { "useitem", "combatservice", "ragdoll" } -- [[ DRAG FUNCTION ]] -- local function MakeDraggable(gui) local dragging, dragInput, dragStart, startPos gui.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true; dragStart = input.Position; startPos = gui.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) gui.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) RunService.RenderStepped:Connect(function() if dragging and dragInput then local delta = dragInput.Position - dragStart gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) end -- [[ UI SETUP ]] -- local ScreenGui = Instance.new("ScreenGui", CoreGui); ScreenGui.Name = "GibHubVerticalUI" local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 150, 0, 360); MainFrame.Position = UDim2.new(0.05, 0, 0.4, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(10, 15, 25); MainFrame.ClipsDescendants = true; MakeDraggable(MainFrame) Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 22) local MainStroke = Instance.new("UIStroke", MainFrame) MainStroke.Color = Color3.fromRGB(140, 220, 255); MainStroke.Thickness = 3; MainStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border -- [[ SNOWFALL & MELTING EFFECT ]] -- task.spawn(function() while true do local flake = Instance.new("TextLabel", MainFrame) flake.BackgroundTransparency = 1 flake.Size = UDim2.new(0, 15, 0, 15) flake.Position = UDim2.new(math.random(), 0, -0.1, 0) flake.Text = "•" flake.TextColor3 = Color3.new(1, 1, 1) flake.TextTransparency = 0.5 flake.ZIndex = 0 local drift = math.random(-20, 20) local duration = math.random(3, 6) -- Melting Animation: Move down, fade out, and shrink flake:TweenPosition(UDim2.new(flake.Position.X.Scale, drift, 1.1, 0), "Out", "Linear", duration) task.spawn(function() task.wait(duration * 0.7) -- Start melting 70% through the fall local meltTween = TweenService:Create(flake, TweenInfo.new(duration * 0.3), { TextTransparency = 1, Size = UDim2.new(0, 0, 0, 0) }) meltTween:Play() meltTween.Completed:Wait() flake:Destroy() end) task.wait(0.4) end end) -- [[ TOP DECORATION ]] -- local SnowflakeIcon = Instance.new("TextLabel", MainFrame) SnowflakeIcon.Size = UDim2.new(0, 30, 0, 30); SnowflakeIcon.Position = UDim2.new(0, 10, 0, 8) SnowflakeIcon.Text = "❄"; SnowflakeIcon.TextColor3 = Color3.fromRGB(200, 240, 255); SnowflakeIcon.TextSize = 22; SnowflakeIcon.BackgroundTransparency = 1; SnowflakeIcon.Font = Enum.Font.FredokaOne local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 45); Title.Position = UDim2.new(0, 0, 0, 5) Title.Text = "GIB HUB"; Title.TextColor3 = Color3.fromRGB(255, 255, 255); Title.Font = Enum.Font.FredokaOne; Title.TextSize = 20; Title.BackgroundTransparency = 1 local TitleStroke = Instance.new("UIStroke", Title); TitleStroke.Thickness = 2.5; TitleStroke.Color = Color3.fromRGB(0, 130, 255) local Container = Instance.new("Frame", MainFrame) Container.Size = UDim2.new(1, 0, 1, -60); Container.Position = UDim2.new(0, 0, 0, 55); Container.BackgroundTransparency = 1 Instance.new("UIListLayout", Container).Padding = UDim.new(0, 8) Container.UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center local function createBtn(text, parent, sizeX) local b = Instance.new("TextButton", parent) b.Size = UDim2.new(sizeX or 0.88, 0, 0, 32); b.BackgroundColor3 = Color3.fromRGB(25, 35, 55) b.Text = text; b.TextColor3 = Color3.new(1, 1, 1); b.Font = Enum.Font.FredokaOne; b.TextSize = 10; b.ZIndex = 2 Instance.new("UICorner", b).CornerRadius = UDim.new(0, 12) local s = Instance.new("UIStroke", b); s.Thickness = 1.8; s.Color = Color3.fromRGB(60, 80, 110) return b end local function updateB(btn, val) btn.BackgroundColor3 = val and Color3.fromRGB(0, 160, 255) or Color3.fromRGB(25, 35, 55) btn.UIStroke.Color = val and Color3.new(1,1,1) or Color3.fromRGB(60, 80, 110) end -- [[ BUTTONS ]] -- local Row = Instance.new("Frame", Container); Row.Size = UDim2.new(0.88, 0, 0, 32); Row.BackgroundTransparency = 1 Instance.new("UIListLayout", Row).FillDirection = Enum.FillDirection.Horizontal; Row.UIListLayout.Padding = UDim.new(0, 6) local DesyncBtn = createBtn("DESYNC V3", Container) local SpeedBtn = createBtn("SPEED", Row, 0.47) local JumpBtn = createBtn("JUMP", Row, 0.47) local EspBtn = createBtn("PLAYER ESP", Container) local BatBtn = createBtn("BAT MASTER", Container) local UnwalkBtn = createBtn("UNWALK", Container) local AntiKBBtn = createBtn("ANTI KB", Container) local AutoGrabBtn = createBtn("AUTO GRAB", Container) -- [[ BUTTON ACTIONS ]] -- AutoGrabBtn.MouseButton1Click:Connect(function() getgenv().AutoGrabActive = not getgenv().AutoGrabActive; updateB(AutoGrabBtn, getgenv().AutoGrabActive) end) EspBtn.MouseButton1Click:Connect(function() getgenv().EspStatus = not getgenv().EspStatus; updateB(EspBtn, getgenv().EspStatus) end) JumpBtn.MouseButton1Click:Connect(function() getgenv().InfJump = not getgenv().InfJump; updateB(JumpBtn, getgenv().InfJump) end) SpeedBtn.MouseButton1Click:Connect(function() getgenv().SpeedStatus = not getgenv().SpeedStatus updateB(SpeedBtn, getgenv().SpeedStatus) if getgenv().SpeedStatus then pcall(function() loadstring(game:HttpGet("https://pastebin.com/raw/S0jRxdhG"))() end) end end) DesyncBtn.MouseButton1Click:Connect(function() getgenv().DesyncActive = not getgenv().DesyncActive updateB(DesyncBtn, getgenv().DesyncActive) if getgenv().DesyncActive then local flags = {{"GameNetPVHeaderRotationalVelocityZeroCutoffExponent", "-5000"},{"LargeReplicatorWrite5", "true"},{"LargeReplicatorEnabled9", "true"},{"AngularVelociryLimit", "360"},{"TimestepArbiterVelocityCriteriaThresholdTwoDt", "2147483646"},{"S2PhysicsSenderRate", "15000"},{"DisableDPIScale", "true"},{"MaxDataPacketPerSend", "2147483647"},{"ServerMaxBandwith", "52"},{"PhysicsSenderMaxBandwidthBps", "20000"},{"MaxTimestepMultiplierBuoyancy", "2147483647"},{"SimOwnedNOUCountThresholdMillionth", "2147483647"},{"MaxMissedWorldStepsRemembered", "-2147483648"},{"CheckPVDifferencesForInterpolationMinVelThresholdStudsPerSecHundredth", "1"},{"StreamJobNOUVolumeLengthCap", "2147483647"},{"DebugSendDistInSteps", "-2147483648"},{"MaxTimestepMultiplierAcceleration", "2147483647"},{"LargeReplicatorRead5", "true"},{"SimExplicitlyCappedTimestepMultiplier", "2147483646"},{"GameNetDontSendRedundantNumTimes", "1"},{"CheckPVLinearVelocityIntegrateVsDeltaPositionThresholdPercent", "1"},{"CheckPVCachedRotVelThresholdPercent", "10"},{"LargeReplicatorSerializeRead3", "true"},{"ReplicationFocusNouExtentsSizeCutoffForPauseStuds", "2147483647"},{"NextGenReplicatorEnabledWrite4", "true"},{"CheckPVDifferencesForInterpolationMinRotVelThresholdRadsPerSecHundredth", "1"},{"GameNetDontSendRedundantDeltaPositionMillionth", "1"},{"InterpolationFrameVelocityThresholdMillionth", "5"},{"StreamJobNOUVolumeCap", "2147483647"},{"InterpolationFrameRotVelocityThresholdMillionth", "5"},{"WorldStepMax", "30"},{"TimestepArbiterHumanoidLinearVelThreshold", "1"},{"InterpolationFramePositionThresholdMillionth", "5"},{"TimestepArbiterHumanoidTurningVelThreshold", "1"},{"MaxTimestepMultiplierContstraint", "2147483647"},{"GameNetPVHeaderLinearVelocityZeroCutoffExponent", "-5000"},{"CheckPVCachedVelThresholdPercent", "10"},{"TimestepArbiterOmegaThou", "1073741823"},{"MaxAcceptableUpdateDelay", "1"},{"LargeReplicatorSerializeWrite4", "true"}} for _, data in ipairs(flags) do pcall(function() setfflag(data[1], data[2]) end) end local char = LocalPlayer.Character if char then local hum = char:FindFirstChildWhichIsA("Humanoid"); if hum then hum:ChangeState(Enum.HumanoidStateType.Dead) end char:ClearAllChildren() local fake = Instance.new("Model", workspace); LocalPlayer.Character = fake; task.wait(); LocalPlayer.Character = char; fake:Destroy() end end end) AntiKBBtn.MouseButton1Click:Connect(function() getgenv().AntiKBActive = not getgenv().AntiKBActive updateB(AntiKBBtn, getgenv().AntiKBActive) if getgenv().AntiKBActive then Controls:Enable() for _, obj in ipairs(ReplicatedStorage:GetDescendants()) do if obj:IsA("RemoteEvent") then local name = obj.Name:lower() for _, key in ipairs(RemoteKeywords) do if name:find(key) then for _, c in ipairs(getconnections(obj.OnClientEvent)) do if c.Disable then c:Disable() end end end end end end end end) UnwalkBtn.MouseButton1Click:Connect(function() getgenv().UnwalkActive = not getgenv().UnwalkActive updateB(UnwalkBtn, getgenv().UnwalkActive) if getgenv().UnwalkActive then local animate = LocalPlayer.Character:FindFirstChild("Animate") if animate then local targets = {"walk","run","jump","swim","swimidle","fall","climb","idle","sit","toolnone","toolsit"} for _, name in ipairs(targets) do local folder = animate:FindFirstChild(name) if folder then for _, anim in ipairs(folder:GetChildren()) do if anim:IsA("Animation") then table.insert(savedAnims, {instance = anim, id = anim.AnimationId}); anim.AnimationId = "" end end end end end watcher = LocalPlayer.Character.DescendantAdded:Connect(function(d) if d:IsA("Animation") then table.insert(savedAnims, {instance = d, id = d.AnimationId}); d.AnimationId = "" end end) else if watcher then watcher:Disconnect() end for _, v in ipairs(savedAnims) do if v.instance then v.instance.AnimationId = v.id end end savedAnims = {} end end) BatBtn.MouseButton1Click:Connect(function() getgenv().BatMasterActive = not getgenv().BatMasterActive updateB(BatBtn, getgenv().BatMasterActive) if getgenv().BatMasterActive then local hrp = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if hrp then attach0 = Instance.new("Attachment", hrp); alignOri = Instance.new("AlignOrientation", hrp) alignOri.Attachment0 = attach0; alignOri.Mode = Enum.OrientationAlignmentMode.OneAttachment; alignOri.RigidityEnabled = true aimbotConnection = RunService.RenderStepped:Connect(function() local closest, dist = nil, 45 for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local d = (p.Character.HumanoidRootPart.Position - hrp.Position).Magnitude if d < dist then dist = d; closest = p.Character.HumanoidRootPart end end end if closest then alignOri.CFrame = CFrame.lookAt(hrp.Position, Vector3.new(closest.Position.X, hrp.Position.Y, closest.Position.Z)) end end) end else if aimbotConnection then aimbotConnection:Disconnect() end if alignOri then alignOri:Destroy() end if attach0 then attach0:Destroy() end end end) -- [[ FEATURE LOOPS ]] -- task.spawn(function() while true do if getgenv().BatMasterActive and LocalPlayer.Character then local bat = LocalPlayer.Backpack:FindFirstChild("Bat") or LocalPlayer.Character:FindFirstChild("Bat") if bat then bat.Parent = LocalPlayer.Character; bat:Activate() end end task.wait(0.05) end end) task.spawn(function() while true do if getgenv().AutoGrabActive then local char = LocalPlayer.Character local hrp = char and char:FindFirstChild("HumanoidRootPart") if hrp then for _, item in ipairs(workspace:GetChildren()) do if item:IsA("Tool") or (item:IsA("Part") and item:FindFirstChild("TouchInterest")) then local targetPos = item:IsA("Tool") and item.Handle.Position or item.Position hrp.CFrame = CFrame.new(targetPos + Vector3.new(0, 2, 0)) task.wait(0.1) firetouchinterest(hrp, item:IsA("Tool") and item.Handle or item, 0) firetouchinterest(hrp, item:IsA("Tool") and item.Handle or item, 1) end end end end task.wait(0.5) end end) RunService.RenderStepped:Connect(function() if getgenv().EspStatus then local myRoot = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local tRoot = p.Character.HumanoidRootPart local box = p.Character:FindFirstChild("GibBox") or Instance.new("BoxHandleAdornment", p.Character) box.Name = "GibBox"; box.Adornee = p.Character; box.AlwaysOnTop = true; box.Color3 = Color3.fromRGB(150, 230, 255); box.Size = Vector3.new(4,6,1); box.Transparency = 0.6 if myRoot then local myP, myS = Camera:WorldToViewportPoint(myRoot.Position) local tP, tS = Camera:WorldToViewportPoint(tRoot.Position) if myS and tS then local tr = Tracers[p] or Drawing.new("Line") tr.Color = Color3.fromRGB(150, 230, 255); tr.Thickness = 2; tr.From = Vector2.new(myP.X, myP.Y); tr.To = Vector2.new(tP.X, tP.Y); tr.Visible = true; Tracers[p] = tr else if Tracers[p] then Tracers[p].Visible = false end end end end end else for _, p in pairs(Players:GetPlayers()) do if p.Character and p.Character:FindFirstChild("GibBox") then p.Character.GibBox:Destroy() end if Tracers[p] then Tracers[p].Visible = false end end end end) UserInputService.JumpRequest:Connect(function() if getgenv().InfJump then LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0, 50, 0) end end) StarterGui:SetCore("SendNotification", {Title = "GIB HUB", Text = "Snowy Melting Hub Loaded! ❄", Duration = 3})
Settings
Title :
[Optional]
Paste Folder :
[Optional]
Select
Syntax :
[Optional]
Select
Markup
CSS
JavaScript
Bash
C
C#
C++
Java
JSON
Lua
Plaintext
C-like
ABAP
ActionScript
Ada
Apache Configuration
APL
AppleScript
Arduino
ARFF
AsciiDoc
6502 Assembly
ASP.NET (C#)
AutoHotKey
AutoIt
Basic
Batch
Bison
Brainfuck
Bro
CoffeeScript
Clojure
Crystal
Content-Security-Policy
CSS Extras
D
Dart
Diff
Django/Jinja2
Docker
Eiffel
Elixir
Elm
ERB
Erlang
F#
Flow
Fortran
GEDCOM
Gherkin
Git
GLSL
GameMaker Language
Go
GraphQL
Groovy
Haml
Handlebars
Haskell
Haxe
HTTP
HTTP Public-Key-Pins
HTTP Strict-Transport-Security
IchigoJam
Icon
Inform 7
INI
IO
J
Jolie
Julia
Keyman
Kotlin
LaTeX
Less
Liquid
Lisp
LiveScript
LOLCODE
Makefile
Markdown
Markup templating
MATLAB
MEL
Mizar
Monkey
N4JS
NASM
nginx
Nim
Nix
NSIS
Objective-C
OCaml
OpenCL
Oz
PARI/GP
Parser
Pascal
Perl
PHP
PHP Extras
PL/SQL
PowerShell
Processing
Prolog
.properties
Protocol Buffers
Pug
Puppet
Pure
Python
Q (kdb+ database)
Qore
R
React JSX
React TSX
Ren'py
Reason
reST (reStructuredText)
Rip
Roboconf
Ruby
Rust
SAS
Sass (Sass)
Sass (Scss)
Scala
Scheme
Smalltalk
Smarty
SQL
Soy (Closure Template)
Stylus
Swift
TAP
Tcl
Textile
Template Toolkit 2
Twig
TypeScript
VB.Net
Velocity
Verilog
VHDL
vim
Visual Basic
WebAssembly
Wiki markup
Xeora
Xojo (REALbasic)
XQuery
YAML
HTML
Expiration :
[Optional]
Never
Self Destroy
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Status :
[Optional]
Public
Unlisted
Private (members only)
Password :
[Optional]
Description:
[Optional]
Tags:
[Optional]
Encrypt Paste
(
?
)
Create Paste
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Site Languages
×
English