Advertisement
Yfytydutyrd

Untitled

May 19th, 2023
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.47 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  2. local Window = Library.CreateLib("Mobilehacks123", "BloodTheme")
  3.  
  4. -- Tabs
  5.  
  6. local Tab1 = Window:NewTab("Combat")
  7. local Tab1Section = Tab1:NewSection("Have Fun!")
  8. local Tab2 = Window:NewTab("Movement")
  9. local Tab2Section = Tab2:NewSection("SubToHera")
  10. local Tab3 = Window:NewTab("POV")
  11. local Tab3Section = Tab3:NewSection("Alert")
  12. local Tab4 = Window:NewTab("Animation/Esp")
  13. local Tab4Section = Tab4:NewSection("Kill")
  14. local Tab5 = Window:NewTab("Batant")
  15. local Tab5Section = Tab5:NewSection("Blatant")
  16.  
  17. local ui_options = {
  18. main_color = Color3.fromRGB(50, 20, 10),
  19. min_size = Vector2.new(400, 300),
  20. toggle_key = Enum.KeyCode.RightShift,
  21. can_resize = true,
  22. }
  23.  
  24. -- Buttons/Windows/Idk
  25.  
  26. Tab1Section:NewButton("InvHitbox", "Enables Hitbox", function()
  27. loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/arsenal-hub/main/Arsenal%20GamingScripter", true))()
  28. end)
  29.  
  30. Tab4Section:NewButton("Animation", "Enables Animation", function()
  31. loadstring(game:HttpGet("https://pastebin.com/raw/Q8cVLfb0",true))()
  32. end)
  33.  
  34. Tab3Section:NewToggle("Fov", "Changes Fov", function(state)
  35. if state then
  36. game.Workspace.CurrentCamera.FieldOfView = 120
  37. else
  38. game.Workspace.CurrentCamera.FieldOfView = 80
  39. end
  40. end)
  41.  
  42. Tab2Section:NewSlider("Speed", "Sussy Speed", 35,23, function(v)
  43. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  44. end)
  45.  
  46. Tab1Section:NewToggle("Kill Aura","Opens Kill Aura",function()
  47. local player = game:GetService("Players")
  48. local lplr = player.LocalPlayer
  49. local cam = workspace.CurrentCamera
  50. local KnitClient = debug.getupvalue(require(lplr.PlayerScripts.TS.knit).setup, 6)
  51. local SwordCont = KnitClient.Controllers.SwordController
  52.  
  53. local aura = true
  54. local DistVal = {["Value"] = 14}
  55. function Aura()
  56. for i,v in pairs(game.Players:GetChildren()) do
  57. if v.Character and v.Name ~= game.Players.LocalPlayer.Name and v.Character:FindFirstChild("HumanoidRootPart") then
  58. local mag = (v.Character.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
  59. if mag <= DistVal["Value"] and v.Team ~= game.Players.LocalPlayer.Team and v.Character:FindFirstChild("Humanoid") then
  60. if v.Character.Humanoid.Health > 0 then
  61. aura = true
  62. SwordCont:swingSwordAtMouse()
  63. end
  64. end
  65. end
  66. end
  67. end
  68.  
  69. game:GetService("RunService").Stepped:connect(function()
  70. Aura()
  71. end)
  72. end)
  73.  
  74. Tab2Section:NewToggle("Spam" , "Opens Spam",function()
  75. while true do wait(1)
  76.  
  77. local A_1 = "Sub To Mobileh4cks123" local A_2 = "All"
  78. local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest Event:FireServer(A_1, A_2) end
  79. end)
  80.  
  81. Tab1Section:NewButton("Keyboard", "Execute Keyboard Script", function()
  82. loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
  83. end)
  84.  
  85. Tab1Section:NewButton("Vape (need config)", "op", function()
  86. loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))()
  87.  
  88. game.StarterGui:SetCore("SendNotification", {
  89. Title = "Vape Loaded";
  90. Text = "Press Left shift"; -- what the text says (ofc)
  91. Duration = 30;
  92. })
  93.  
  94. game.StarterGui:SetCore("SendNotification", {
  95. Title = "Vape";
  96. Text = "by pottpott19"; -- what the text says (ofc)
  97. Duration = 30;
  98. })
  99. wait(1)
  100. game.StarterGui:SetCore("SendNotification", {
  101. Title = "Enjoy";
  102. Text = "Make sure you subscribe to icebear"; -- what the text says (ofc)
  103. Duration = 30;
  104. })
  105. end)
  106.  
  107. Tab4Section:NewToggle("Esp","Opens Box esp",function()
  108. local Player = game:GetService("Players").LocalPlayer
  109. local Camera = game:GetService("Workspace").CurrentCamera
  110. local Mouse = Player:GetMouse()
  111.  
  112. local function Dist(pointA, pointB) -- magnitude errors for some reason : (
  113. return math.sqrt(math.pow(pointA.X - pointB.X, 2) + math.pow(pointA.Y - pointB.Y, 2))
  114. end
  115.  
  116. local function GetClosest(points, dest)
  117. local min = math.huge
  118. local closest = nil
  119. for _,v in pairs(points) do
  120. local dist = Dist(v, dest)
  121. if dist < min then
  122. min = dist
  123. closest = v
  124. end
  125. end
  126. return closest
  127. end
  128.  
  129. local function DrawESP(plr)
  130. local Box = Drawing.new("Quad")
  131. Box.Visible = false
  132. Box.PointA = Vector2.new(0, 0)
  133. Box.PointB = Vector2.new(0, 0)
  134. Box.PointC = Vector2.new(0, 0)
  135. Box.PointD = Vector2.new(0, 0)
  136. Box.Color = Color3.fromRGB(255, 255, 255)
  137. Box.Thickness = 2
  138. Box.Transparency = 1
  139.  
  140. local function Update()
  141. local c
  142. c = game:GetService("RunService").RenderStepped:Connect(function()
  143. if plr.Character ~= nil and plr.Character:FindFirstChildOfClass("Humanoid") ~= nil and plr.Character:FindFirstChild("HumanoidRootPart") ~= nil and plr.Character:FindFirstChildOfClass("Humanoid").Health > 0 and plr.Character:FindFirstChild("Head") ~= nil then
  144. local pos, vis = Camera:WorldToViewportPoint(plr.Character.HumanoidRootPart.Position)
  145. if vis then
  146. local points = {}
  147. local c = 0
  148. for _,v in pairs(plr.Character:GetChildren()) do
  149. if v:IsA("BasePart") then
  150. c = c + 1
  151. local p = Camera:WorldToViewportPoint(v.Position)
  152. if v.Name == "HumanoidRootPart" then
  153. p = Camera:WorldToViewportPoint((v.CFrame * CFrame.new(0, 0, -v.Size.Z)).p)
  154. elseif v.Name == "Head" then
  155. p = Camera:WorldToViewportPoint((v.CFrame * CFrame.new(0, v.Size.Y/2, v.Size.Z/1.25)).p)
  156. elseif string.match(v.Name, "Left") then
  157. p = Camera:WorldToViewportPoint((v.CFrame * CFrame.new(-v.Size.X/2, 0, 0)).p)
  158. elseif string.match(v.Name, "Right") then
  159. p = Camera:WorldToViewportPoint((v.CFrame * CFrame.new(v.Size.X/2, 0, 0)).p)
  160. end
  161. points[c] = p
  162. end
  163. end
  164. local Left = GetClosest(points, Vector2.new(0, pos.Y))
  165. local Right = GetClosest(points, Vector2.new(Camera.ViewportSize.X, pos.Y))
  166. local Top = GetClosest(points, Vector2.new(pos.X, 0))
  167. local Bottom = GetClosest(points, Vector2.new(pos.X, Camera.ViewportSize.Y))
  168.  
  169. if Left ~= nil and Right ~= nil and Top ~= nil and Bottom ~= nil then
  170. Box.PointA = Vector2.new(Right.X, Top.Y)
  171. Box.PointB = Vector2.new(Left.X, Top.Y)
  172. Box.PointC = Vector2.new(Left.X, Bottom.Y)
  173. Box.PointD = Vector2.new(Right.X, Bottom.Y)
  174.  
  175. Box.Visible = true
  176. else
  177. Box.Visible = false
  178. end
  179. else
  180. Box.Visible = false
  181. end
  182. else
  183. Box.Visible = false
  184. if game.Players:FindFirstChild(plr.Name) == nil then
  185. c:Disconnect()
  186. end
  187. end
  188. end)
  189. end
  190. coroutine.wrap(Update)()
  191. end
  192.  
  193. for _,v in pairs(game:GetService("Players"):GetChildren()) do
  194. if v.Name ~= Player.Name then
  195. DrawESP(v)
  196. end
  197. end
  198.  
  199. game:GetService("Players").PlayerAdded:Connect(function(v)
  200. DrawESP(v)
  201. end)
  202. end)
  203.  
  204. Tab4Section:NewButton("AnimationNotMine","OpenAnimation",function()
  205. loadstring(game:HttpGet("https://cdn.discordapp.com/attachments/1016359889246879802/1039819753402941460/Protected.lua",true))()
  206. end)
  207.  
  208. Tab2Section:NewButton("InfJump","GivesUnlimitedJump",function()
  209. local InfiniteJumpEnabled = true
  210. game:GetService("UserInputService").JumpRequest:connect(function()
  211. if InfiniteJumpEnabled then
  212. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  213. end
  214. end)
  215. end)
  216.  
  217. game.StarterGui:SetCore("SendNotification", {
  218. Title = "Mobile";
  219. Text = "MadeBy: Mobilehacks123"; -- what the text says (ofc)
  220. Duration = 30;
  221. })
  222. wait(1)
  223. game.StarterGui:SetCore("SendNotification", {
  224. Title = "Enjoy";
  225. Text = "Don't Forget to Subscribe to HeraHeraTheKid"; -- what the text says (ofc)
  226. Duration = 30;
  227. })
  228.  
  229. Tab1Section:NewToggle("InstaBed","OpenIdk",function()
  230. local mt = getrawmetatable(game)
  231. local backup = mt.__namecall
  232. if setreadonly then setreadonly(mt, false) else make_writeable(mt, true) end
  233. mt.__namecall = newcclosure(function(...)
  234. local method = getnamecallmethod()
  235. local args = {...}
  236. pcall(function()
  237. if method == "FireServer" or method == "InvokeServer" and args[2] and args[2].chargedAttack then
  238. args[2].chargedAttack.chargeRatio = 0/0
  239. return backup(unpack(args))
  240. end
  241. end)
  242. return backup(...)
  243. end)
  244. end)
  245.  
  246. Tab4Section:NewButton("AnimationHub","openAnimation",function()
  247. loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Animation-Hub/main/Animation%20Gui", true))()
  248. end)
  249.  
  250. Tab2Section:NewSlider("JumpPower", "Sussy Speed", 10,5, function(v)
  251. game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  252. end)
  253.  
  254. Tab2Section:NewSlider("KillAuraSpeed", "Sussy Speed", 10,5, function(v)
  255. game.Players.LocalPlayer.Character.Humanoid.SwingSword = v
  256. end)
  257.  
  258. Tab1Section:NewToggle(" KillauraFixs","FixKillAura",function()
  259. if state then
  260.  
  261. BindToStepped("Killaura", 1, function()
  262.  
  263. if entity.isAlive then
  264.  
  265. KillauraRemote()
  266.  
  267. end
  268.  
  269. end)
  270.  
  271. else
  272.  
  273. UnbindFromStepped("Killaura")
  274.  
  275. end
  276.  
  277. end)
  278.  
  279. Tab1Section:NewSlider("Distance 1-20", "Increase killaura distance", 20, 1, function(val)
  280.  
  281. DistVal["Value"] = val
  282.  
  283. end)
  284.  
  285. Tab1Section:NewToggle("No Swing", "Disable killaura swing", function(state)
  286.  
  287. if state then
  288.  
  289. if killauraswing["Enabled"] == true then
  290.  
  291. killauraswing["Enabled"] = false
  292.  
  293. end
  294.  
  295. else
  296.  
  297. if killauraswing["Enabled"] == false then
  298.  
  299. killauraswing["Enabled"] = true
  300.  
  301. end
  302.  
  303. end
  304.  
  305. end)
  306.  
  307. Tab5Section:NewToggle("BedNuker"," AutoBreakBEd",function()
  308. if state then
  309. BindToStepped("BedNuker", 1, function()
  310. nuker()
  311. end)
  312. else
  313. UnbindFromStepped("BedNuker")
  314. end
  315. end)
  316.  
  317. Tab5Section:NewToggle("NofallDamage","NoFall",function()
  318. local nofall = true
  319.  
  320. if callback then
  321.  
  322. if nofall then
  323.  
  324. spawn(function()
  325.  
  326. repeat
  327.  
  328. wait()
  329.  
  330. if nofall == false then
  331.  
  332. return end
  333.  
  334. game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged.GroundHit:FireServer()
  335.  
  336. until nofall == false
  337.  
  338. end)
  339.  
  340. end
  341.  
  342. else
  343.  
  344. local nofall = false
  345.  
  346. end
  347.  
  348. end)
  349.  
  350. Tab5Section:NewToggle("Noknockback","TakeNoKb",function()
  351. if state then
  352. KnockbackTable["kbDirectionStrength"] = 0
  353. KnockbackTable["kbUpwardStrength"] = 0
  354. else
  355. KnockbackTable["kbDirectionStrength"] = 100
  356. KnockbackTable["kbUpwardStrength"] = 100
  357. end
  358. end)
  359.  
  360. Tab5Section:NewSlider("Range 18-1", "", 18, 1, function(val)
  361. -- 500 (MaxValue) | 0 (MinValue)
  362. reachval["Value"] = val
  363. end)
  364.  
  365. Tab4Section:NewButton("Zombie Animation" , "Plays Zombie Animation",function()
  366.  
  367. loadstring(game:HttpGet("https://pastebin.com/raw/t3yTSPRn",true))()
  368.  
  369. end)
  370.  
  371. Tab4Section:NewButton("Ninja Animation","Plays Ninja Animation",function()
  372.  
  373. loadstring(game:HttpGet("https://pastebin.com/raw/bwGLPVV7",true))()
  374.  
  375. end)
  376.  
  377. Tab4Section:NewButton("Robot Animation","Plays Robot Animation",function()
  378.  
  379. local Animate =
  380.  
  381. game.Players.LocalPlayer.Character.Animate
  382.  
  383. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616088211"
  384.  
  385. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616089559"
  386.  
  387. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616095330"
  388.  
  389. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616091570"
  390.  
  391. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616090535"
  392.  
  393. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616086039"
  394.  
  395. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616087089"
  396.  
  397. end)
  398.  
  399. Tab4Section:NewButton("Toy Animation","Opens Toy Animation",function()
  400.  
  401. local Animate =
  402.  
  403. game.Players.LocalPlayer.Character.Animate
  404.  
  405. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=782841498"
  406.  
  407. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=782845736"
  408.  
  409. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=782843345"
  410.  
  411. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
  412.  
  413. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
  414.  
  415. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=782843869"
  416.  
  417. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
  418.  
  419. end)
  420.  
  421. local Credits = Window:NewTab("Credits")
  422. local CreditsSection = Credits:NewSection("Credits")
  423.  
  424. CreditsSection:NewLabel("Created by Mobilehacks123")
  425. CreditsSection:NewLabel("Credits to kavo library"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement