Advertisement
DoctorAnarchist

Big Paintball GUI | Super speed + ESP

Aug 24th, 2021 (edited)
1,324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/ThatsMyMute/Kraken/main/ui.lua"))()
  2. local lib = library.new("Kraken")
  3.  
  4.  
  5.  
  6. -- themes
  7. local themes = {
  8. Background = Color3.fromRGB(24, 24, 24),
  9. Glow = Color3.fromRGB(255, 0, 0),
  10. Accent = Color3.fromRGB(255, 0, 0),
  11. LightContrast = Color3.fromRGB(20, 20, 20),
  12. DarkContrast = Color3.fromRGB(14, 14, 14),
  13. TextColor = Color3.fromRGB(255, 255, 255)
  14. }
  15.  
  16. -- first page
  17. local Main = lib:addPage("Weapon", 5012544693)
  18. local MainSection = Main:addSection("Weapon")
  19.  
  20. local Movement = lib:addPage("Movement", 5012544693)
  21. local MovementS = Movement:addSection("Movement")
  22.  
  23.  
  24.  
  25. MainSection:addSlider("Bullet Velocity", 0, 0, 9999, function(value)
  26. for i,v in pairs(game:GetService("ReplicatedStorage").Framework.Modules["1 | Directory"].Guns:GetChildren()) do
  27. pcall(function()
  28. require(v)[tostring(i)].velocity = value
  29. end)
  30. end
  31. end)
  32.  
  33. MainSection:addButton("Increased Fire Rate", function()
  34. for i,v in pairs(game:GetService("ReplicatedStorage").Framework.Modules["1 | Directory"].Guns:GetChildren()) do
  35. pcall(function()
  36. require(v)[tostring(i)].firerate = -math.huge
  37. end)
  38. end
  39. end)
  40.  
  41. MainSection:addToggle("Automatic Fire Rate", nil, function(value)
  42. for i,v in pairs(game:GetService("ReplicatedStorage").Framework.Modules["1 | Directory"].Guns:GetChildren()) do
  43. pcall(function()
  44. require(v)[tostring(i)].automatic = value
  45. end)
  46. end
  47. end)
  48.  
  49.  
  50.  
  51. MovementS:addSlider("Additional Speed", 0, 0, 100, function(value)
  52. for i,v in pairs(game:GetService("ReplicatedStorage").Framework.Modules["1 | Directory"].Guns:GetChildren()) do
  53. pcall(function()
  54. require(v)[tostring(i)].additionalSpeed = value
  55. end)
  56. end
  57. end)
  58.  
  59. local ESP = lib:addPage("ESP", 5012544693)
  60. local ESPS = ESP:addSection("ESP")
  61.  
  62. shared.Visuals = { --// Configuration (Will load default settings if shared.Visuals doesn't exist.)
  63. Enabled = false,
  64. CrosshairEnabled = false,
  65. Boxes = false,
  66. Healthbar = false,
  67. Tracers = false,
  68. Info = false,
  69. ShowAllyTeam = false,
  70. UseTeamColor = true,
  71. AllyColor = Color3.fromRGB(0, 255, 0),
  72. EnemyColor = Color3.fromRGB(255, 0, 0),
  73. Crosshair = {
  74. Size = 5,
  75. Thickness = 1.5,
  76. Offset = 5
  77. }
  78. }
  79.  
  80. loadstring(game:HttpGet("https://raw.githubusercontent.com/ThatsMyMute/Kraken/main/esp.lua"))()
  81.  
  82. ESPS:addToggle("Enable ESP", nil, function(bool)
  83. shared.Visuals.Enabled = bool
  84. end)
  85.  
  86. ESPS:addToggle("Boxes", nil, function(bool)
  87. shared.Visuals.Boxes = bool
  88. end)
  89.  
  90. ESPS:addToggle("Healthbar", nil, function(bool)
  91. shared.Visuals.Healthbar = bool
  92. end)
  93.  
  94. ESPS:addToggle("Tracers", nil, function(bool)
  95. shared.Visuals.Tracers = bool
  96. end)
  97.  
  98. ESPS:addToggle("Info", nil, function(bool)
  99. shared.Visuals.Info = bool
  100. end)
  101.  
  102. ESPS:addToggle("ShowAllyTeam", nil, function(bool)
  103. shared.Visuals.ShowAllyTeam = bool
  104. end)
  105.  
  106. ESPS:addToggle("UseTeamColor", true, function(bool)
  107. shared.Visuals.UseTeamColor = bool
  108. end)
  109.  
  110.  
  111.  
  112.  
  113. -- second page
  114. local theme = lib:addPage("Settings", 5012544693)
  115. local colors = theme:addSection("Colors")
  116. local settings = theme:addSection("Settings")
  117.  
  118. for theme, color in pairs(themes) do -- all in one theme changer, i know, im cool
  119. colors:addColorPicker(theme, color, function(color3)
  120. lib:setTheme(theme, color3)
  121. end)
  122. end
  123.  
  124. settings:addKeybind("Toggle Keybind", Enum.KeyCode.RightControl, function()
  125. lib:toggle()
  126. end, function()
  127. end)
  128.  
  129. settings:addButton("Destroy UI", function()
  130. if game.CoreGui:FindFirstChild("Kraken") then
  131. game:GetService("CoreGui").Kraken:Destroy();
  132. game.Workspace.part0000000:Destroy();
  133. game.Workspace.part00000002:Destroy();
  134. end
  135. end)
  136.  
  137.  
  138. -- load
  139. lib:SelectPage(lib.pages[1], true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement