Advertisement
Guest User

Evade roblox script

a guest
Aug 17th, 2022
19,589
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.47 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "evade", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3. -- auto jump works and if u says it doesnt u just dont know how to bhop sorry? also you have to jump first to enable the bhop thing
  4. local Tab = Window:MakeTab({
  5. Name = "esp options",
  6. Icon = "rbxassetid://4483345998",
  7. PremiumOnly = false
  8. })
  9.  
  10. Tab:AddToggle({
  11. Name = "esp toggle",
  12. Default = true,
  13. Callback = function(Value)
  14. getgenv().toggleespmpt = Value
  15. end
  16. })
  17.  
  18. Tab:AddColorpicker({
  19. Name = "Esp colour",
  20. Default = Color3.fromRGB(255, 255, 255),
  21. Callback = function(Value)
  22. getgenv().mptespcolour = Value
  23. end
  24. })
  25.  
  26. Tab:AddSlider({
  27. Name = "esp max distance",
  28. Min = 1,
  29. Max = 100000,
  30. Default = 100000,
  31. Color = Color3.fromRGB(255,255,255),
  32. Increment = 250,
  33. ValueName = "studs",
  34. Callback = function(Value)
  35. getgenv().mptespdistance = Value
  36. end
  37. })
  38.  
  39. Tab:AddSlider({
  40. Name = "esp thickness",
  41. Min = 1,
  42. Max = 30,
  43. Default = 2,
  44. Color = Color3.fromRGB(255,255,255),
  45. Increment = 1,
  46. ValueName = "thickness",
  47. Callback = function(Value)
  48. getgenv().mptespthickness = Value
  49. end
  50. })
  51.  
  52. local Tab1 = Window:MakeTab({
  53. Name = "auto jump ",
  54. Icon = "rbxassetid://4483345998",
  55. PremiumOnly = false
  56. })
  57. getgenv().autojumpmpt = true
  58. function autojump()
  59. local plr = game:GetService'Players'.LocalPlayer
  60. repeat wait() until plr.Character ~= nil
  61. plr.Character:WaitForChild'Humanoid'.StateChanged:Connect(function(old,new)
  62. if new == Enum.HumanoidStateType.Landed and autojumpmpt then
  63. plr.Character:WaitForChild'Humanoid':ChangeState("Jumping")
  64. end
  65. end)
  66. end
  67. autojump()
  68. game:GetService'Players'.LocalPlayer.CharacterAdded:Connect(autojump)
  69. Tab1:AddBind({
  70. Name = "toggle auto jump",
  71. Default = Enum.KeyCode.E,
  72. Hold = false,
  73. Callback = function()
  74. if getgenv().autojumpmpt == true then
  75. getgenv().autojumpmpt = false
  76. else
  77. getgenv().autojumpmpt = true
  78. end
  79. end
  80. })
  81.  
  82. local cam = workspace.CurrentCamera
  83. local rs = game:GetService'RunService'
  84.  
  85. getgenv().toggleespmpt = true
  86. getgenv().Thickmpt = 2
  87. function esp(plr)
  88. if game:GetService'Players':GetPlayerFromCharacter(plr) == nil then
  89. local rat = Drawing.new("Line")
  90. rs.RenderStepped:Connect(function()
  91. if plr:FindFirstChild'HumanoidRootPart' then
  92. local vector,screen = cam:WorldToViewportPoint(plr.HumanoidRootPart.Position)
  93. if screen then
  94. rat.Visible = toggleespmpt
  95. rat.Thickness = Thickmpt
  96. rat.From = Vector2.new(cam.ViewportSize.X / 2,cam.ViewportSize.Y / 1)
  97. rat.To = Vector2.new(vector.X,vector.Y)
  98. rat.Color = getgenv().mptespcolour
  99. rat.Thickness = getgenv().mptespthickness
  100. else
  101. rat.Visible = false
  102. end
  103. else
  104. pcall(function()
  105. rat.Visible = false
  106. end)
  107. end
  108. if not plr:FindFirstChild'HumanoidRootPart' or not plr:FindFirstChild'HumanoidRootPart':IsDescendantOf(game:GetService'Workspace') then
  109. pcall(function()
  110. rat:Remove()
  111. end)
  112. end
  113. end)
  114. end
  115. end
  116.  
  117. for i,v in pairs(game:GetService'Workspace'.Game.Players:GetChildren()) do
  118. esp(v)
  119.  
  120. end
  121. game:GetService'Workspace'.Game.Players.ChildAdded:Connect(function(plr)
  122. esp(plr)
  123. end)
  124.  
Advertisement
Comments
  • botaklava173
    277 days
    # text 0.12 KB | 0 0
    1. The script is long outdated and doesn't work. Evade fans are advised to look for the script at https://scriptsroblox.net
Add Comment
Please, Sign In to add comment
Advertisement