Eshaanopn

Untitled

Nov 2nd, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Murders vs sheriff",
  4. HidePremium = false,
  5. SaveConfig = true,
  6. ConfigFolder = "OrionTest"})
  7.  
  8. local Tab = Window:MakeTab({
  9. Name = "Main tab",
  10. Icon = "rbxassetid://4483345998",
  11. PremiumOnly = false
  12. })
  13.  
  14. local Section = Tab:AddSection({
  15. Name = "Have fun!"
  16. })
  17.  
  18. OrionLib:MakeNotification({
  19. Name = "Yo!",
  20. Content = "Thanks for using my script",
  21. Image = "rbxassetid://4483345998",
  22. Time = 10
  23. })
  24.  
  25. Tab:AddButton({
  26. Name = "Hitbox",
  27. Callback = function()
  28. _G.HeadSize = 10
  29. print("button pressed")
  30. end
  31. })
  32.  
  33. Tab:AddButton({
  34. Name = "infinite jumps",
  35. Callback = function()
  36. local InfiniteJumpEnabled = true
  37. game:GetService("UserInputService").JumpRequest:connect(function()
  38. if InfiniteJumpEnabled then
  39. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  40. end
  41. end)
  42. end)
  43. print("button pressed")
  44. end
  45. })
  46.  
  47. Tab:AddButton({
  48. Name = "speed!",
  49. Callback = function()
  50. local speed = 1
  51. local hb = game:GetService("RunService").Heartbeat
  52. local tpwalking = true
  53. local player = game:GetService("Players")
  54. local lplr = player.LocalPlayer
  55. local chr = lplr.Character
  56. local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
  57. while tpwalking and hb:Wait() and chr and hum and hum.Parent do
  58. if hum.MoveDirection.Magnitude > 0 then
  59. if tspeed and isNumber(tspeed) then
  60. chr:TranslateBy(hum.MoveDirection * tonumber(tspeed))
  61. else
  62. chr:TranslateBy(hum.MoveDirection)
  63. end
  64. end
  65. end
  66. end)
  67. print("button pressed")
  68. end
  69. })
  70.  
  71. Tab:AddButton({
  72. Name = "Esp.",
  73. Callback = function()
  74. local Settings = {
  75. ['Material'] = Enum.Material.Neon, -- Material
  76. ['Color'] = Color3.fromRGB(0,255,255), -- Color
  77. ['Transparency'] = 0.7 -- 0 to 1 Transparency
  78. }
  79.  
  80. local ScreenGui = Instance.new('ScreenGui', game.CoreGui) -- Create screengui
  81. ScreenGui.IgnoreGuiInset = true
  82.  
  83. local ViewportFrame = Instance.new('ViewportFrame', ScreenGui) -- Create viewport and define properties
  84. ViewportFrame.CurrentCamera = workspace.CurrentCamera
  85. ViewportFrame.Size = UDim2.new(1,0,1,0)
  86. ViewportFrame.BackgroundTransparency = 1
  87. ViewportFrame.ImageTransparency = Settings.Transparency
  88.  
  89. local Chasms = {} -- Array for storing parts
  90.  
  91. function generateChasm(player) -- functions that generates chasms for the player specififed
  92. local Character = workspace:FindFirstChild(player.Name)
  93.  
  94. if Character then
  95. for _,Part in pairs(Character:GetChildren()) do
  96. if Part:IsA('Part') or Part:IsA('MeshPart') then
  97. local Chasm = Part:Clone()
  98.  
  99. for _,Child in pairs(Chasm:GetChildren()) do
  100. if Child:IsA('Decal') then
  101. Child:Destroy()
  102. end
  103. end
  104.  
  105. Chasm.Parent = ViewportFrame
  106. Chasm.Material = Settings.Material
  107. Chasm.Color = Settings.Color
  108. Chasm.Anchored = true
  109.  
  110. table.insert(Chasms, Chasm)
  111. end
  112. end
  113. end
  114. end
  115.  
  116. function clearChasms() -- remove all chasms
  117. for _,Chasm in pairs(Chasms) do
  118. Chasm:Destroy()
  119. end
  120.  
  121. Chasms = {}
  122. end
  123.  
  124. while game:GetService('RunService').RenderStepped:Wait() do -- loop this process
  125. clearChasms()
  126.  
  127. for _,Player in pairs(game:GetService('Players'):GetPlayers()) do
  128. if Player ~= game:GetService('Players').LocalPlayer then
  129. generateChasm(Player)
  130. end
  131. end
  132. end
  133. end)
  134. print("button pressed")
  135. end
  136. })
  137.  
  138. local Tab = Window:MakeTab({
  139. Name = "Credits",
  140. Icon = "rbxassetid://4483345998",
  141. PremiumOnly = false
  142. })
  143.  
  144. local Section = Tab:AddSection({
  145. Name = "Credits to eshaanopn"
  146. })
Advertisement
Add Comment
Please, Sign In to add comment