Advertisement
Trophoon7867

Untitled

Dec 4th, 2021
938
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.36 KB | None | 0 0
  1. if game.PlaceId == 1636712 then
  2.     local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  3.     local Window = Library.CreateLib("SJJ armoured patrol", "DarkTheme")
  4.  
  5.     local AutofarmTab = Window:NewTab("autofarm")
  6.     local mainAutofarm = AutofarmTab:NewSection("Main")
  7.     mainAutofarm:NewTextBox("Alt", "put ur alts name in here", function(txt)
  8.         local plr = game.Players:FindFirstChild(txt)
  9.         local plrPos = plr.Character.HumanoidRootPart
  10.  
  11.         game.Players.LocalPlayer.Character.HumanoidRootPart = plrPos
  12.     end)
  13.  
  14.     local LocalPlayerTab = Window:NewTab("LocalPlayer")
  15.     local LfnVynuy4pSdM73hmhWVfXnU1Sb9rAMpPn = LocalPlayerTab:NewSection("Walkspeed")
  16.     LfnVynuy4pSdM73hmhWVfXnU1Sb9rAMpPn:NewSlider("Walkspeed", "Configure ur player's walkspeed", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  17.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  18.     end)
  19.    
  20.    
  21.  
  22.     local Teleportstab = Window:NewTab("Teleports")
  23.     local Teleportsec = Teleportstab:NewSection("base teleports")
  24.     Teleportsec:NewButton("Blue side tp", "Teleports to the blue side", function()
  25.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2827.81665, 101.5, 2808.34204, -1.1920929e-07, 0, 1.00000012, 0, 1, 0, -1.00000012, 0, -1.1920929e-07)
  26.     end)
  27.  
  28.     Teleportsec:NewButton("Red side tp", "Teleports to the red side", function()
  29.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(179.9702, 101.099998, 183.630112, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  30.     end)
  31.  
  32.     local TeamsTab = Window:NewTab("Teams")
  33.     local TeamsMainSec = TeamsTab:NewSection("Team Selection (unbalanced Bypass!)")
  34.     local RedTeamSwitch = TeamsMainSec:NewButton("Red Team", "Transfers you to the Red team \n(Bypasses the unbalanced team shit)", function()
  35.         local plr = game.Players.LocalPlayer
  36.         local targetTeam = game:GetService("Teams"):FindFirstChild("Bright red Team")
  37.  
  38.         plr.Team = targetTeam
  39.     end)
  40.  
  41.     local BlueTeamSwitch = TeamsMainSec:NewButton("blue Team", "Transfers you to the blue team \n(Bypasses the unbalanced team shit)", function()
  42.         local plr = game.Players.LocalPlayer
  43.         local targetTeam = game:GetService("Teams"):FindFirstChild("Bright blue Team")
  44.  
  45.         plr.Team = targetTeam
  46.     end)
  47.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement