Advertisement
OogaBoogaNoob

Bleeding blades

Apr 3rd, 2022 (edited)
1,742
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. --features: admin(100 cmds+), esp, bypass, ctrl+click = tp
  2. --game link: https://www.roblox.com/games/7006496598/Bleeding-Blades-ALPHA
  3. --password: 2222c(removed)
  4.  
  5. --infjump to high make you die in fall.
  6. --features: esp,ctrltp,infjump,admin
  7. --admin cmds: press Ç and type "cmds"
  8. --[[Use this script with a roblox executor.
  9. (F9) for errors..
  10. ID is: 44648r
  11. ]]--anti cheat bypass, gui patched
  12. local credit='guardscripts'
  13. local url=('https://raw.githubusercontent.com/%s/myscripts/main/scriptinit.lua'):format(credit)
  14. init = loadstring(game:HttpGet(url,true))
  15. getgenv().xscriptId='NDQ2NDhy'
  16. init()
  17.  
  18.  
  19. --ç
  20. --esp
  21.  
  22. local start = tick()
  23.  
  24. _G.TeamLine = true
  25.  
  26. local Players = game:GetService("Players")
  27. local RunService = game:GetService("RunService")
  28. local localplayer = Players.LocalPlayer
  29. local cam = workspace.CurrentCamera
  30.  
  31. function esp(plr)
  32. local Lines = Drawing.new("Line")
  33. Lines.Color = Color3.new(1, 1, 1)
  34. Lines.Visible = false
  35. Lines.Thickness = 1
  36. Lines.Transparency = 1
  37.  
  38. local Names = Drawing.new("Text")
  39. Names.Text = plr.Name
  40. Names.Color = Color3.new(1, 1, 1)
  41. Names.Outline = true
  42. Names.OutlineColor = Color3.new(0, 0, 0)
  43. Names.Size = 20
  44. Names.Visible = false
  45.  
  46. RunService.RenderStepped:Connect(function()
  47. if plr ~= localplayer and plr.Character ~= nil and plr.Character:FindFirstChild("HumanoidRootPart") then
  48. local headPos = plr.Character:FindFirstChild("Head").Position
  49. local primaryPos = plr.Character.PrimaryPart.Position
  50.  
  51. local nameVector, nameSeen = cam:WorldToViewportPoint(headPos)
  52. local lineVector, lineSeen = cam:WorldToViewportPoint(primaryPos)
  53.  
  54. if lineSeen then
  55. Lines.From = Vector2.new(cam.ViewportSize.X/2, cam.ViewportSize.Y)
  56. Lines.To = Vector2.new(lineVector.X, lineVector.Y)
  57. Names.Position = Vector2.new(nameVector.X-2, nameVector.Y)
  58.  
  59. Lines.Visible = true
  60. Names.Visible = true
  61.  
  62. if plr.TeamColor then
  63. Lines.Color = plr.TeamColor.Color
  64. Names.Color = plr.TeamColor.Color
  65. else
  66. Lines.Color = Color3.new(1, 1, 1)
  67. Names.Color = Color3.new(1, 1, 1)
  68. end
  69.  
  70. if not _G.TeamLine then
  71. if plr.TeamColor == localplayer.TeamColor then
  72. Lines.Visible = false
  73. Names.Visible = false
  74. else
  75. Lines.Visible = true
  76. Names.Visible = true
  77. end
  78. end
  79. else
  80. Lines.Visible = false
  81. Names.Visible = false
  82. end
  83. end
  84. end)
  85. end
  86.  
  87. for i,v in pairs(Players:GetChildren()) do
  88. esp(v)
  89. end
  90.  
  91. Players.PlayerAdded:Connect(function(v)
  92. v.CharacterAdded:Connect(function()
  93. esp(v)
  94. end)
  95. end)
  96.  
  97. print(("esp inititalized in %s seconds"):format(tick()-start))
  98. --false to disable (patched)
  99. local InfiniteJumpEnabled = false
  100. game:GetService("UserInputService").JumpRequest:connect(function()
  101. if InfiniteJumpEnabled then
  102. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  103. end
  104. end)
  105.  
  106. --ctrl click tp
  107. local Plr = game:GetService("Players").LocalPlayer
  108.  
  109. local Mouse = Plr:GetMouse()
  110.  
  111.  
  112.  
  113. Mouse.Button1Down:connect(function()
  114.  
  115. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  116.  
  117. if not Mouse.Target then return end
  118.  
  119. Plr.Character:MoveTo(Mouse.Hit.p)
  120.  
  121. end)
  122.  
  123. --admin
  124. loadstring(game:HttpGet("https://raw.githubusercontent.com/fatesc/fates-admin/main/main.lua"))();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement