Advertisement
1zxyuuki

Untitled

Feb 19th, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Murderes vs sherifs duel", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4. OrionLib:MakeNotification({
  5. Name = "Hey crdits to",
  6. Content = "Yuki come no seco",
  7. Image = "rbxassetid://4483345998",
  8. Time = 8
  9. })
  10.  
  11. local Tab = Window:MakeTab({
  12. Name = "Main Tab",
  13. Icon = "rbxassetid://4483345998",
  14. PremiumOnly = false
  15. })
  16. Tab:AddButton({
  17. Name = "Esp",
  18. Callback = function()
  19. loadstring(game:HttpGet("https://pastebin.com/raw/N7UcS9f4"))();
  20. print("button pressed")
  21. end
  22. })
  23. Tab:AddButton({
  24. Name = "Hitbox",
  25. Callback = function()
  26. _G.HeadSize = 20
  27. _G.Disabled = true
  28.  
  29. game:GetService('RunService').RenderStepped:Connect(function()
  30. if _G.Disabled then
  31. for _, player in ipairs(game:GetService('Players'):GetPlayers()) do
  32. if player.Name ~= game:GetService('Players').LocalPlayer.Name then
  33. pcall(function()
  34. local character = player.Character
  35. local humanoidRootPart = character and character:FindFirstChild("HumanoidRootPart")
  36. if humanoidRootPart then
  37. humanoidRootPart.Size = Vector3.new(_G.HeadSize, _G.HeadSize, _G.HeadSize)
  38. humanoidRootPart.Transparency = 1
  39. humanoidRootPart.BrickColor = BrickColor.new("Bright red") -- Changed color to red
  40. humanoidRootPart.Material = Enum.Material.Neon -- Changed material to Neon
  41. humanoidRootPart.CanCollide = false
  42. end
  43. end)
  44. end
  45. end
  46. end
  47. end)
  48.  
  49. print("button pressed")
  50. end
  51. })
  52. Tab:AddButton({
  53. Name = "Speed gui",
  54. Callback = function()
  55.  
  56. local gui = Instance.new("ScreenGui")
  57. gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  58.  
  59. local frame = Instance.new("Frame")
  60. frame.Size = UDim2.new(0, 200, 0, 100)
  61. frame.Position = UDim2.new(0.5, -100, 0.5, -50)
  62. frame.BackgroundColor3 = Color3.new(1, 1, 1)
  63. frame.Active = true
  64. frame.Draggable = true
  65. frame.Parent = gui
  66.  
  67. local speedButton = Instance.new("TextButton")
  68. speedButton.Size = UDim2.new(0, 100, 0, 50)
  69. speedButton.Position = UDim2.new(0.5, -50, 0.5, -25)
  70. speedButton.BackgroundColor3 = Color3.new(0, 0.5, 1)
  71. speedButton.Text = "Speed"
  72. speedButton.Parent = frame
  73.  
  74. local function unleashYourPower()
  75. local humanoid = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  76. if humanoid then
  77. humanoid.WalkSpeed = humanoid.WalkSpeed + 100
  78. end
  79. end
  80.  
  81. speedButton.MouseButton1Click:Connect(unleashYourPower)
  82. print("button pressed")
  83. end
  84. })
  85. Tab:AddButton({
  86. Name = "inf yile",
  87. Callback = function()
  88. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  89. print("button pressed")
  90. end
  91. })
  92. local Section = Tab:AddSection({
  93. Name = "made by: ilmx"
  94. })
  95.  
  96. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement