Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
- local Window = Library.CreateLib("Mobilehacks123", "BloodTheme")
- -- Tabs
- local Tab1 = Window:NewTab("Combat")
- local Tab1Section = Tab1:NewSection("Have Fun!")
- local Tab2 = Window:NewTab("Movement")
- local Tab2Section = Tab2:NewSection("SubToHera")
- local Tab3 = Window:NewTab("POV")
- local Tab3Section = Tab3:NewSection("Alert")
- local Tab4 = Window:NewTab("Animation/Esp")
- local Tab4Section = Tab4:NewSection("Kill")
- local Tab5 = Window:NewTab("Batant")
- local Tab5Section = Tab5:NewSection("Blatant")
- local ui_options = {
- main_color = Color3.fromRGB(50, 20, 10),
- min_size = Vector2.new(400, 300),
- toggle_key = Enum.KeyCode.RightShift,
- can_resize = true,
- }
- -- Buttons/Windows/Idk
- Tab1Section:NewButton("InvHitbox", "Enables Hitbox", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/arsenal-hub/main/Arsenal%20GamingScripter", true))()
- end)
- Tab4Section:NewButton("Animation", "Enables Animation", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/Q8cVLfb0",true))()
- end)
- Tab3Section:NewToggle("Fov", "Changes Fov", function(state)
- if state then
- game.Workspace.CurrentCamera.FieldOfView = 120
- else
- game.Workspace.CurrentCamera.FieldOfView = 80
- end
- end)
- Tab2Section:NewSlider("Speed", "Sussy Speed", 35,23, function(v)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
- end)
- Tab1Section:NewToggle("Kill Aura","Opens Kill Aura",function()
- local player = game:GetService("Players")
- local lplr = player.LocalPlayer
- local cam = workspace.CurrentCamera
- local KnitClient = debug.getupvalue(require(lplr.PlayerScripts.TS.knit).setup, 6)
- local SwordCont = KnitClient.Controllers.SwordController
- local aura = true
- local DistVal = {["Value"] = 14}
- function Aura()
- for i,v in pairs(game.Players:GetChildren()) do
- if v.Character and v.Name ~= game.Players.LocalPlayer.Name and v.Character:FindFirstChild("HumanoidRootPart") then
- local mag = (v.Character.HumanoidRootPart.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
- if mag <= DistVal["Value"] and v.Team ~= game.Players.LocalPlayer.Team and v.Character:FindFirstChild("Humanoid") then
- if v.Character.Humanoid.Health > 0 then
- aura = true
- SwordCont:swingSwordAtMouse()
- end
- end
- end
- end
- end
- game:GetService("RunService").Stepped:connect(function()
- Aura()
- end)
- end)
- Tab2Section:NewToggle("Spam" , "Opens Spam",function()
- while true do wait(1)
- local A_1 = "Sub To Mobileh4cks123" local A_2 = "All"
- local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest Event:FireServer(A_1, A_2) end
- end)
- Tab1Section:NewButton("Keyboard", "Execute Keyboard Script", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
- end)
- Tab1Section:NewButton("Vape (need config)", "op", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))()
- game.StarterGui:SetCore("SendNotification", {
- Title = "Vape Loaded";
- Text = "Press Left shift"; -- what the text says (ofc)
- Duration = 30;
- })
- game.StarterGui:SetCore("SendNotification", {
- Title = "Vape";
- Text = "by pottpott19"; -- what the text says (ofc)
- Duration = 30;
- })
- wait(1)
- game.StarterGui:SetCore("SendNotification", {
- Title = "Enjoy";
- Text = "Make sure you subscribe to icebear"; -- what the text says (ofc)
- Duration = 30;
- })
- end)
- Tab4Section:NewToggle("Esp","Opens Box esp",function()
- local Player = game:GetService("Players").LocalPlayer
- local Camera = game:GetService("Workspace").CurrentCamera
- local Mouse = Player:GetMouse()
- local function Dist(pointA, pointB) -- magnitude errors for some reason : (
- return math.sqrt(math.pow(pointA.X - pointB.X, 2) + math.pow(pointA.Y - pointB.Y, 2))
- end
- local function GetClosest(points, dest)
- local min = math.huge
- local closest = nil
- for _,v in pairs(points) do
- local dist = Dist(v, dest)
- if dist < min then
- min = dist
- closest = v
- end
- end
- return closest
- end
- local function DrawESP(plr)
- local Box = Drawing.new("Quad")
- Box.Visible = false
- Box.PointA = Vector2.new(0, 0)
- Box.PointB = Vector2.new(0, 0)
- Box.PointC = Vector2.new(0, 0)
- Box.PointD = Vector2.new(0, 0)
- Box.Color = Color3.fromRGB(255, 255, 255)
- Box.Thickness = 2
- Box.Transparency = 1
- local function Update()
- local c
- c = game:GetService("RunService").RenderStepped:Connect(function()
- 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
- local pos, vis = Camera:WorldToViewportPoint(plr.Character.HumanoidRootPart.Position)
- if vis then
- local points = {}
- local c = 0
- for _,v in pairs(plr.Character:GetChildren()) do
- if v:IsA("BasePart") then
- c = c + 1
- local p = Camera:WorldToViewportPoint(v.Position)
- if v.Name == "HumanoidRootPart" then
- p = Camera:WorldToViewportPoint((v.CFrame * CFrame.new(0, 0, -v.Size.Z)).p)
- elseif v.Name == "Head" then
- p = Camera:WorldToViewportPoint((v.CFrame * CFrame.new(0, v.Size.Y/2, v.Size.Z/1.25)).p)
- elseif string.match(v.Name, "Left") then
- p = Camera:WorldToViewportPoint((v.CFrame * CFrame.new(-v.Size.X/2, 0, 0)).p)
- elseif string.match(v.Name, "Right") then
- p = Camera:WorldToViewportPoint((v.CFrame * CFrame.new(v.Size.X/2, 0, 0)).p)
- end
- points[c] = p
- end
- end
- local Left = GetClosest(points, Vector2.new(0, pos.Y))
- local Right = GetClosest(points, Vector2.new(Camera.ViewportSize.X, pos.Y))
- local Top = GetClosest(points, Vector2.new(pos.X, 0))
- local Bottom = GetClosest(points, Vector2.new(pos.X, Camera.ViewportSize.Y))
- if Left ~= nil and Right ~= nil and Top ~= nil and Bottom ~= nil then
- Box.PointA = Vector2.new(Right.X, Top.Y)
- Box.PointB = Vector2.new(Left.X, Top.Y)
- Box.PointC = Vector2.new(Left.X, Bottom.Y)
- Box.PointD = Vector2.new(Right.X, Bottom.Y)
- Box.Visible = true
- else
- Box.Visible = false
- end
- else
- Box.Visible = false
- end
- else
- Box.Visible = false
- if game.Players:FindFirstChild(plr.Name) == nil then
- c:Disconnect()
- end
- end
- end)
- end
- coroutine.wrap(Update)()
- end
- for _,v in pairs(game:GetService("Players"):GetChildren()) do
- if v.Name ~= Player.Name then
- DrawESP(v)
- end
- end
- game:GetService("Players").PlayerAdded:Connect(function(v)
- DrawESP(v)
- end)
- end)
- Tab4Section:NewButton("AnimationNotMine","OpenAnimation",function()
- loadstring(game:HttpGet("https://cdn.discordapp.com/attachments/1016359889246879802/1039819753402941460/Protected.lua",true))()
- end)
- Tab2Section:NewButton("InfJump","GivesUnlimitedJump",function()
- local InfiniteJumpEnabled = true
- game:GetService("UserInputService").JumpRequest:connect(function()
- if InfiniteJumpEnabled then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end)
- end)
- game.StarterGui:SetCore("SendNotification", {
- Title = "Mobile";
- Text = "MadeBy: Mobilehacks123"; -- what the text says (ofc)
- Duration = 30;
- })
- wait(1)
- game.StarterGui:SetCore("SendNotification", {
- Title = "Enjoy";
- Text = "Don't Forget to Subscribe to HeraHeraTheKid"; -- what the text says (ofc)
- Duration = 30;
- })
- Tab1Section:NewToggle("InstaBed","OpenIdk",function()
- local mt = getrawmetatable(game)
- local backup = mt.__namecall
- if setreadonly then setreadonly(mt, false) else make_writeable(mt, true) end
- mt.__namecall = newcclosure(function(...)
- local method = getnamecallmethod()
- local args = {...}
- pcall(function()
- if method == "FireServer" or method == "InvokeServer" and args[2] and args[2].chargedAttack then
- args[2].chargedAttack.chargeRatio = 0/0
- return backup(unpack(args))
- end
- end)
- return backup(...)
- end)
- end)
- Tab4Section:NewButton("AnimationHub","openAnimation",function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Animation-Hub/main/Animation%20Gui", true))()
- end)
- Tab2Section:NewSlider("JumpPower", "Sussy Speed", 10,5, function(v)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
- end)
- Tab2Section:NewSlider("KillAuraSpeed", "Sussy Speed", 10,5, function(v)
- game.Players.LocalPlayer.Character.Humanoid.SwingSword = v
- end)
- Tab1Section:NewToggle(" KillauraFixs","FixKillAura",function()
- if state then
- BindToStepped("Killaura", 1, function()
- if entity.isAlive then
- KillauraRemote()
- end
- end)
- else
- UnbindFromStepped("Killaura")
- end
- end)
- Tab1Section:NewSlider("Distance 1-20", "Increase killaura distance", 20, 1, function(val)
- DistVal["Value"] = val
- end)
- Tab1Section:NewToggle("No Swing", "Disable killaura swing", function(state)
- if state then
- if killauraswing["Enabled"] == true then
- killauraswing["Enabled"] = false
- end
- else
- if killauraswing["Enabled"] == false then
- killauraswing["Enabled"] = true
- end
- end
- end)
- Tab5Section:NewToggle("BedNuker"," AutoBreakBEd",function()
- if state then
- BindToStepped("BedNuker", 1, function()
- nuker()
- end)
- else
- UnbindFromStepped("BedNuker")
- end
- end)
- Tab5Section:NewToggle("NofallDamage","NoFall",function()
- local nofall = true
- if callback then
- if nofall then
- spawn(function()
- repeat
- wait()
- if nofall == false then
- return end
- game:GetService("ReplicatedStorage").rbxts_include.node_modules.net.out._NetManaged.GroundHit:FireServer()
- until nofall == false
- end)
- end
- else
- local nofall = false
- end
- end)
- Tab5Section:NewToggle("Noknockback","TakeNoKb",function()
- if state then
- KnockbackTable["kbDirectionStrength"] = 0
- KnockbackTable["kbUpwardStrength"] = 0
- else
- KnockbackTable["kbDirectionStrength"] = 100
- KnockbackTable["kbUpwardStrength"] = 100
- end
- end)
- Tab5Section:NewSlider("Range 18-1", "", 18, 1, function(val)
- -- 500 (MaxValue) | 0 (MinValue)
- reachval["Value"] = val
- end)
- Tab4Section:NewButton("Zombie Animation" , "Plays Zombie Animation",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/t3yTSPRn",true))()
- end)
- Tab4Section:NewButton("Ninja Animation","Plays Ninja Animation",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/bwGLPVV7",true))()
- end)
- Tab4Section:NewButton("Robot Animation","Plays Robot Animation",function()
- local Animate =
- game.Players.LocalPlayer.Character.Animate
- Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616088211"
- Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616089559"
- Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616095330"
- Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616091570"
- Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616090535"
- Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616086039"
- Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616087089"
- end)
- Tab4Section:NewButton("Toy Animation","Opens Toy Animation",function()
- local Animate =
- game.Players.LocalPlayer.Character.Animate
- Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=782841498"
- Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=782845736"
- Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=782843345"
- Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
- Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
- Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=782843869"
- Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
- end)
- local Credits = Window:NewTab("Credits")
- local CreditsSection = Credits:NewSection("Credits")
- CreditsSection:NewLabel("Created by Mobilehacks123")
- CreditsSection:NewLabel("Credits to kavo library"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement