LSJiqueue

sab lagger script

Aug 30th, 2025
864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.81 KB | None | 0 0
  1. local uis = game:GetService("UserInputService");
  2. local toggled = false;
  3. uis.InputBegan:Connect(function(i, g)
  4.  
  5.     if (g) then return end;
  6.  
  7.     if (i.KeyCode == Enum.KeyCode.T) then
  8.         if (toggled == false) then
  9.             toggled = true;
  10.             print("enabled");
  11.         elseif (toggled == true) then
  12.             toggled = false;
  13.             print("disabled")
  14.         end;
  15.     end;
  16. end);
  17. while true do
  18.     task.wait(0.09);
  19.     if (toggled == true) then
  20.         local tungBat = game.Players.LocalPlayer.Backpack:FindFirstChild("Tung Bat");
  21.         if (tungBat) then
  22.             tungBat.Parent = workspace:FindFirstChild(game.Players.LocalPlayer.Name);
  23.         else
  24.             local newTung = workspace:FindFirstChild(game.Players.LocalPlayer.Name):FindFirstChild("Tung Bat")
  25.             if (newTung) then
  26.                 newTung.Parent = game.Players.LocalPlayer.Backpack
  27.             end;
  28.         end;
  29.     end;  
  30. end;
Advertisement
Add Comment
Please, Sign In to add comment