Advertisement
Guest User

War tycoon

a guest
May 13th, 2024
4,654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.63 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Midnight", "Midnight")
  3.  
  4. local Tab = Window:NewTab("Main")
  5. local AimBotSection = Tab:NewSection("AimBot")
  6.  
  7.  
  8. AimBotSection:NewButton("AimBot", "AimBotting onto head", function()
  9. loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Aimbot-V2/main/Resources/Scripts/Main.lua"))()
  10. end)
  11.  
  12. AimBotSection:NewButton("IY", "Infinite Yield Admin Commands", function()
  13. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  14. end)
  15.  
  16. AimBotSection:NewButton("Hitbox expander + Esp", "Hitbox Esp", function()
  17. --[[
  18.  
  19. Open source
  20. Made by !vcsk0#1516
  21. Credits to me
  22.  
  23. Credits to the Owner Who Made The ESP Script
  24.  
  25. ]]
  26.  
  27. local CoreGui = game:GetService("StarterGui")
  28. local Players = game:GetService("Players")
  29.  
  30. local function isNumber(str)
  31. if tonumber(str) ~= nil or str == 'inf' then
  32. return true
  33. end
  34. end
  35.  
  36. getgenv().HitboxSize = 15
  37. getgenv().HitboxTransparency = 0.9
  38.  
  39. getgenv().HitboxStatus = false
  40. getgenv().TeamCheck = false
  41.  
  42. getgenv().Walkspeed = game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed
  43. getgenv().Jumppower = game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower
  44.  
  45. getgenv().TPSpeed = 3
  46. getgenv().TPWalk = false
  47.  
  48. --// UI
  49.  
  50. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/UI-Library/main/Source/MyUILib(Unamed).lua"))();
  51. local Window = Library:Create("Hitbox Expander")
  52.  
  53. local ToggleGui = Instance.new("ScreenGui")
  54. local Toggle = Instance.new("TextButton")
  55.  
  56. ToggleGui.Name = "ToggleGui_HE"
  57. ToggleGui.Parent = game.CoreGui
  58.  
  59. Toggle.Name = "Toggle"
  60. Toggle.Parent = ToggleGui
  61. Toggle.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  62. Toggle.BackgroundTransparency = 0.660
  63. Toggle.Position = UDim2.new(0, 0, 0.454706937, 0)
  64. Toggle.Size = UDim2.new(0.0650164187, 0, 0.0888099447, 0)
  65. Toggle.Font = Enum.Font.SourceSans
  66. Toggle.Text = "Toggle"
  67. Toggle.TextScaled = true
  68. Toggle.TextColor3 = Color3.fromRGB(40, 40, 40)
  69. Toggle.TextSize = 24.000
  70. Toggle.TextXAlignment = Enum.TextXAlignment.Left
  71. Toggle.Active = true
  72. Toggle.Draggable = true
  73. Toggle.MouseButton1Click:connect(function()
  74. Library:ToggleUI()
  75. end)
  76.  
  77. local HomeTab = Window:Tab("Home","rbxassetid://10888331510")
  78. local PlayerTab = Window:Tab("Players","rbxassetid://12296135476")
  79. local VisualTab = Window:Tab("Visuals","rbxassetid://12308581351")
  80.  
  81. HomeTab:InfoLabel("only works on some games!")
  82.  
  83. HomeTab:Section("Settings")
  84.  
  85. HomeTab:TextBox("Hitbox Size", function(value)
  86. getgenv().HitboxSize = value
  87. end)
  88.  
  89. HomeTab:TextBox("Hitbox Transparency", function(number)
  90. getgenv().HitboxTransparency = number
  91. end)
  92.  
  93. HomeTab:Section("Main")
  94.  
  95. HomeTab:Toggle("Status: ", function(state)
  96. getgenv().HitboxStatus = state
  97. game:GetService('RunService').RenderStepped:connect(function()
  98. if HitboxStatus == true and TeamCheck == false then
  99. for i,v in next, game:GetService('Players'):GetPlayers() do
  100. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  101. pcall(function()
  102. v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize)
  103. v.Character.HumanoidRootPart.Transparency = HitboxTransparency
  104. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  105. v.Character.HumanoidRootPart.Material = "Neon"
  106. v.Character.HumanoidRootPart.CanCollide = false
  107. end)
  108. end
  109. end
  110. elseif HitboxStatus == true and TeamCheck == true then
  111. for i,v in next, game:GetService('Players'):GetPlayers() do
  112. if game:GetService('Players').LocalPlayer.Team ~= v.Team then
  113. pcall(function()
  114. v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize)
  115. v.Character.HumanoidRootPart.Transparency = HitboxTransparency
  116. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  117. v.Character.HumanoidRootPart.Material = "Neon"
  118. v.Character.HumanoidRootPart.CanCollide = false
  119. end)
  120. end
  121. end
  122. else
  123. for i,v in next, game:GetService('Players'):GetPlayers() do
  124. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  125. pcall(function()
  126. v.Character.HumanoidRootPart.Size = Vector3.new(2,2,1)
  127. v.Character.HumanoidRootPart.Transparency = 1
  128. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Medium stone grey")
  129. v.Character.HumanoidRootPart.Material = "Plastic"
  130. v.Character.HumanoidRootPart.CanCollide = false
  131. end)
  132. end
  133. end
  134. end
  135. end)
  136. end)
  137.  
  138. HomeTab:Toggle("Team Check", function(state)
  139. getgenv().TeamCheck = state
  140. end)
  141.  
  142. HomeTab:Keybind("Toggle UI", Enum.KeyCode.F, function()
  143. Library:ToggleUI()
  144. end)
  145.  
  146. PlayerTab:TextBox("WalkSpeed", function(value)
  147. getgenv().Walkspeed = value
  148. pcall(function()
  149. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = value
  150. end)
  151. end)
  152.  
  153. PlayerTab:Toggle("Loop WalkSpeed", function(state)
  154. getgenv().loopW = state
  155. game:GetService("RunService").Heartbeat:Connect(function()
  156. if loopW == true then
  157. pcall(function()
  158. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Walkspeed
  159. end)
  160. end
  161. end)
  162. end)
  163.  
  164. PlayerTab:TextBox("JumpPower", function(value)
  165. getgenv().Jumppower = value
  166. pcall(function()
  167. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = value
  168. end)
  169. end)
  170.  
  171. PlayerTab:Toggle("Loop JumpPower", function(state)
  172. getgenv().loopJ = state
  173. game:GetService("RunService").Heartbeat:Connect(function()
  174. if loopJ == true then
  175. pcall(function()
  176. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Jumppower
  177. end)
  178. end
  179. end)
  180. end)
  181.  
  182. PlayerTab:TextBox("TP Speed", function(value)
  183. getgenv().TPSpeed = value
  184. end)
  185.  
  186. PlayerTab:Toggle("TP Walk", function(s)
  187. getgenv().TPWalk = s
  188. local hb = game:GetService("RunService").Heartbeat
  189. local player = game:GetService("Players")
  190. local lplr = player.LocalPlayer
  191. local chr = lplr.Character
  192. local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
  193. while getgenv().TPWalk and hb:Wait() and chr and hum and hum.Parent do
  194. if hum.MoveDirection.Magnitude > 0 then
  195. if getgenv().TPSpeed and isNumber(getgenv().TPSpeed) then
  196. chr:TranslateBy(hum.MoveDirection * tonumber(getgenv().TPSpeed))
  197. else
  198. chr:TranslateBy(hum.MoveDirection)
  199. end
  200. end
  201. end
  202. end)
  203.  
  204. PlayerTab:Slider("Fov", game.Workspace.CurrentCamera.FieldOfView,120, function(v)
  205. game.Workspace.CurrentCamera.FieldOfView = v
  206. end)
  207.  
  208. PlayerTab:Toggle("Noclip", function(s)
  209. getgenv().Noclip = s
  210. game:GetService("RunService").Heartbeat:Connect(function()
  211. if Noclip == true then
  212. game:GetService("RunService").Stepped:wait()
  213. game.Players.LocalPlayer.Character.Head.CanCollide = false
  214. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  215. end
  216. end)
  217. end)
  218.  
  219. PlayerTab:Toggle("Infinite Jump", function(s)
  220. getgenv().InfJ = s
  221. game:GetService("UserInputService").JumpRequest:connect(function()
  222. if InfJ == true then
  223. game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  224. end
  225. end)
  226. end)
  227.  
  228. PlayerTab:Button("Rejoin", function()
  229. game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer)
  230. end)
  231.  
  232. VisualTab:InfoLabel("Wait 3-10 seconds")
  233.  
  234. VisualTab:Toggle("Character Highlight", function(state)
  235. getgenv().enabled = state --Toggle on/off
  236. getgenv().filluseteamcolor = true --Toggle fill color using player team color on/off
  237. getgenv().outlineuseteamcolor = true --Toggle outline color using player team color on/off
  238. getgenv().fillcolor = Color3.new(0, 0, 0) --Change fill color, no need to edit if using team color
  239. getgenv().outlinecolor = Color3.new(1, 1, 1) --Change outline color, no need to edit if using team color
  240. getgenv().filltrans = 0.5 --Change fill transparency
  241. getgenv().outlinetrans = 0.5 --Change outline transparency
  242.  
  243. loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/RobloxScripts/main/Highlight-ESP.lua"))()
  244. end)
  245.  
  246. if game.PlaceId == 3082002798 then
  247. local GamesTab = Window:Tab("Games","rbxassetid://15426471035")
  248. GamesTab:InfoLabel("Game: "..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name)
  249. GamesTab:Button("No Cooldown", function()
  250. for i, v in pairs(game:GetService('ReplicatedStorage')['Shared_Modules'].Tools:GetDescendants()) do
  251. if v:IsA('ModuleScript') then
  252. local Module = require(v)
  253. Module.DEBOUNCE = 0
  254. end
  255. end
  256. end)
  257. end
  258. end)
  259.  
  260. local Tab = Window:NewTab("Credits")
  261. local CreditsSection = Tab:NewSection("Credits")
  262.  
  263. CreditsSection:NewButton("Credits to: agent_stol and bestofthebest_1v1 (me)", "....... its hitbox.", function()
  264. --[[
  265. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  266. ]]
  267. -- leave a like pls
  268.  
  269.  
  270. _G.HeadSize = 75
  271. _G.Disabled = true
  272.  
  273. game:GetService('RunService').RenderStepped:connect(function()
  274. if _G.Disabled then
  275. for i,v in next, game:GetService('Players'):GetPlayers() do
  276. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  277. pcall(function()
  278. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  279. v.Character.HumanoidRootPart.Transparency = 0.7
  280. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  281. v.Character.HumanoidRootPart.Material = "Neon"
  282. v.Character.HumanoidRootPart.CanCollide = false
  283. end)
  284. end
  285. end
  286. end
  287. end)
  288. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement