Advertisement
2AreYouMental110

pick a side

Oct 17th, 2022
3,643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.75 KB | Gaming | 0 0
  1. -- https://web.roblox.com/games/663655429/Pick-A-Side
  2.  
  3. getgenv().makesize = false
  4.  
  5. for i,v in pairs(game.CoreGui:GetChildren()) do
  6.     if v.Name == "espstuff" then
  7.         v:Destroy()
  8.     end
  9. end
  10.  
  11. local selectedoption
  12. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  13. local Window = Library.CreateLib("pick a side", "Sentinel")
  14.  
  15. local A = Window:NewTab("main")
  16. local A1 = A:NewSection("main")
  17.  
  18. local folder = Instance.new("Folder")
  19. folder.Parent = game.CoreGui
  20. folder.Name = "espstuff"
  21.  
  22. A1:NewButton("show all", "show all", function()
  23.     for i,v in pairs(folder:GetChildren()) do
  24.         v:Destroy()
  25.     end
  26.     for i,v in pairs(game.Players:GetPlayers()) do
  27.         for i,v in pairs(v.Character:GetChildren()) do
  28.             if v.ClassName == "Part" or v.ClassName == "MeshPart" or v.ClassName == "UnionOperation" then
  29.                 local box = Instance.new("BoxHandleAdornment")
  30.                 box.Parent = folder
  31.                 box.Adornee = v
  32.                 box.Size = v.Size
  33.                 box.Color3 = v.Color
  34.                 box.Transparency = 0.5
  35.             end
  36.         end
  37.     end
  38. end)
  39.  
  40. A1:NewButton("size weapon", "size", function()
  41.     for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  42.         if v.ClassName == "Tool" then
  43.             v.Handle.Size = Vector3.new(x,y,z)
  44.             for i,v in pairs(v.Handle:GetChildren()) do
  45.                 if v.Name == "Mesh" then
  46.                     v:Destroy()
  47.                 end
  48.             end
  49.         end
  50.     end
  51. end)
  52.  
  53. local x
  54. local y
  55. local z
  56.  
  57. A1:NewToggle("automatically size weapon", "placeholder", function(bool)
  58.     getgenv().makesize = bool
  59.     if bool then
  60.         local a = game.Players.LocalPlayer.Character.ChildAdded:Connect(function(item)
  61.             for i,v in pairs(item.Handle:GetChildren()) do
  62.                 if v.Name == "Mesh" then
  63.                     v:Destroy()
  64.                 end
  65.             end
  66.             item.Handle.Size = Vector3.new(x,y,z)
  67.         end)
  68.     else
  69.         a:Disconnect()
  70.     end
  71. end)
  72.  
  73. local xt = A1:NewLabel("X: ")
  74. local yt = A1:NewLabel("Y: ")
  75. local zt = A1:NewLabel("Z: ")
  76.  
  77. A1:NewTextBox("X", "X", function(txt)
  78.     print(txt)
  79.     xt:UpdateLabel("X: "..txt)
  80.     x = txt
  81. end)
  82.  
  83. A1:NewTextBox("Y", "Y", function(txt)
  84.     print(txt)
  85.     yt:UpdateLabel("Y: "..txt)
  86.     y = txt
  87. end)
  88.  
  89. A1:NewTextBox("Z", "Z", function(txt)
  90.     print(txt)
  91.     zt:UpdateLabel("Z: "..txt)
  92.     z = txt
  93. end)
  94.  
  95. A1:NewButton("delete lava", "delete lava", function()
  96.     game:GetService("Workspace").Lava.TouchInterest:Destroy()
  97. end)
  98.  
  99. A1:NewButton("no wall collision", "no wall collision", function()
  100.     game:GetService("Workspace").Wall.CanCollide = false
  101. end)
  102.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement