Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --features: admin(100 cmds+), esp, bypass, ctrl+click = tp
- --game link: https://www.roblox.com/games/7006496598/Bleeding-Blades-ALPHA
- --password: 2222c(removed)
- --infjump to high make you die in fall.
- --features: esp,ctrltp,infjump,admin
- --admin cmds: press Ç and type "cmds"
- --[[Use this script with a roblox executor.
- (F9) for errors..
- ID is: 44648r
- ]]--anti cheat bypass, gui patched
- local credit='guardscripts'
- local url=('https://raw.githubusercontent.com/%s/myscripts/main/scriptinit.lua'):format(credit)
- init = loadstring(game:HttpGet(url,true))
- getgenv().xscriptId='NDQ2NDhy'
- init()
- --ç
- --esp
- local start = tick()
- _G.TeamLine = true
- local Players = game:GetService("Players")
- local RunService = game:GetService("RunService")
- local localplayer = Players.LocalPlayer
- local cam = workspace.CurrentCamera
- function esp(plr)
- local Lines = Drawing.new("Line")
- Lines.Color = Color3.new(1, 1, 1)
- Lines.Visible = false
- Lines.Thickness = 1
- Lines.Transparency = 1
- local Names = Drawing.new("Text")
- Names.Text = plr.Name
- Names.Color = Color3.new(1, 1, 1)
- Names.Outline = true
- Names.OutlineColor = Color3.new(0, 0, 0)
- Names.Size = 20
- Names.Visible = false
- RunService.RenderStepped:Connect(function()
- if plr ~= localplayer and plr.Character ~= nil and plr.Character:FindFirstChild("HumanoidRootPart") then
- local headPos = plr.Character:FindFirstChild("Head").Position
- local primaryPos = plr.Character.PrimaryPart.Position
- local nameVector, nameSeen = cam:WorldToViewportPoint(headPos)
- local lineVector, lineSeen = cam:WorldToViewportPoint(primaryPos)
- if lineSeen then
- Lines.From = Vector2.new(cam.ViewportSize.X/2, cam.ViewportSize.Y)
- Lines.To = Vector2.new(lineVector.X, lineVector.Y)
- Names.Position = Vector2.new(nameVector.X-2, nameVector.Y)
- Lines.Visible = true
- Names.Visible = true
- if plr.TeamColor then
- Lines.Color = plr.TeamColor.Color
- Names.Color = plr.TeamColor.Color
- else
- Lines.Color = Color3.new(1, 1, 1)
- Names.Color = Color3.new(1, 1, 1)
- end
- if not _G.TeamLine then
- if plr.TeamColor == localplayer.TeamColor then
- Lines.Visible = false
- Names.Visible = false
- else
- Lines.Visible = true
- Names.Visible = true
- end
- end
- else
- Lines.Visible = false
- Names.Visible = false
- end
- end
- end)
- end
- for i,v in pairs(Players:GetChildren()) do
- esp(v)
- end
- Players.PlayerAdded:Connect(function(v)
- v.CharacterAdded:Connect(function()
- esp(v)
- end)
- end)
- print(("esp inititalized in %s seconds"):format(tick()-start))
- --false to disable (patched)
- local InfiniteJumpEnabled = false
- game:GetService("UserInputService").JumpRequest:connect(function()
- if InfiniteJumpEnabled then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end)
- --ctrl click tp
- local Plr = game:GetService("Players").LocalPlayer
- local Mouse = Plr:GetMouse()
- Mouse.Button1Down:connect(function()
- if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
- if not Mouse.Target then return end
- Plr.Character:MoveTo(Mouse.Hit.p)
- end)
- --admin
- loadstring(game:HttpGet("https://raw.githubusercontent.com/fatesc/fates-admin/main/main.lua"))();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement