Advertisement
xvc200

Murderers VS Sheriffs Duels script

Feb 5th, 2025
1,224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.70 KB | None | 0 0
  1. --Made by vesmirrr
  2. local OrionLib = loadstring(game:HttpGet(
  3. ('https://pastebin.com/raw/Ne470NUV')))()
  4.  
  5. local Window = OrionLib:MakeWindow({
  6. Name = [[<font color="rgb(255,0,0)">haha</font>]],
  7. HidePremium = false,
  8. SaveConfig = true,
  9. ConfigFolder = "OrionTest"
  10. })
  11.  
  12. local Tab1 = Window:MakeTab({Name = "Main", Icon = "", PremiumOnly = false})
  13. local Tab3 = Window:MakeTab({Name = "ESP", Icon = "", PremiumOnly = false})
  14. local Tab2 = Window:MakeTab({Name = "Character", Icon = "", PremiumOnly = false})
  15. local Expander = false
  16.  
  17. local HB_Settings = {
  18. Color = Color3.new(1, 0, 0), -- Default to red if not set
  19. Transparency = 0.5,
  20. Size = 2
  21. }
  22.  
  23. local Player = game.Players.LocalPlayer
  24.  
  25. -- Function to add hitbox changes
  26. function addHitBoxChanges()
  27. while Expander do
  28. wait(0.1)
  29. for i, plr in pairs(game.Players:GetPlayers()) do
  30. if plr ~= Player and plr.Team ~= Player.Team then
  31. local character = plr.Character
  32. if character then
  33. local hrp = character:FindFirstChild("HumanoidRootPart")
  34. if hrp then
  35. hrp.Size = Vector3.new(HB_Settings.Size, HB_Settings.Size, HB_Settings.Size)
  36. hrp.CanCollide = false
  37. hrp.Transparency = HB_Settings.Transparency
  38. hrp.Color = HB_Settings.Color
  39. end
  40. end
  41. end
  42. end
  43. end
  44.  
  45. -- Revert changes when Expander is false
  46. for i, plr in pairs(game.Players:GetPlayers()) do
  47. if plr ~= Player and plr.Team ~= Player.Team then
  48. local character = plr.Character
  49. if character then
  50. local hrp = character:FindFirstChild("HumanoidRootPart")
  51. if hrp then
  52. hrp.Size = Vector3.new(2, 2, 2)
  53. hrp.CanCollide = false
  54. hrp.Transparency = 1
  55. hrp.Color = Color3.new(1, 1, 1)
  56. end
  57. end
  58. end
  59. end
  60. end
  61.  
  62. -- Function to teleport enemy to click position
  63. local function teleportToClick()
  64. local mouse = Player:GetMouse()
  65. mouse.Button1Down:Connect(function()
  66. if AimBotEnabled then
  67. local targetPosition = mouse.Hit.p
  68. for i, plr in pairs(game.Players:GetPlayers()) do
  69. if plr ~= Player and plr.Team ~= Player.Team then
  70. local character = plr.Character
  71. if character then
  72. local hrp = character:FindFirstChild("HumanoidRootPart")
  73. if hrp then
  74. hrp.CFrame = CFrame.new(targetPosition)
  75. end
  76. end
  77. end
  78. end
  79. end
  80. end)
  81. end
  82.  
  83. -- GUI Elements
  84. Tab1:AddToggle({
  85. Name = "HitBox Expander",
  86. Default = false,
  87. Callback = function(v)
  88. Expander = v
  89. if Expander then
  90. addHitBoxChanges()
  91. end
  92. end
  93. })
  94.  
  95. Tab1:AddToggle({
  96. Name = "AimBot",
  97. Default = false,
  98. Callback = function(v)
  99. AimBotEnabled = v
  100. if AimBotEnabled then
  101. HB_Settings.Size = 9999999
  102. HB_Settings.Transparency = 1
  103. addHitBoxChanges()
  104. teleportToClick()
  105. else
  106. HB_Settings.Size = 2
  107. HB_Settings.Transparency = 0.5
  108. end
  109. end
  110. })
  111.  
  112. Tab1:AddSection({
  113. Name = "HitBox Configuration"
  114. })
  115.  
  116. Tab1:AddColorpicker({
  117. Name = "HitBox Color",
  118. Default = Color3.fromRGB(255, 0, 0),
  119. Callback = function(Value)
  120. HB_Settings.Color = Value
  121. print(Value)
  122. end
  123. })
  124.  
  125. Tab1:AddSlider({
  126. Name = "HitBox Size",
  127. Min = 2,
  128. Max = 50,
  129. Default = 2,
  130. Color = Color3.fromRGB(255, 0, 0),
  131. Increment = 1,
  132. ValueName = "Size",
  133. Callback = function(Value)
  134. HB_Settings.Size = Value
  135. end
  136. })
  137.  
  138. Tab1:AddSlider({
  139. Name = "HitBox Transparency",
  140. Min = 0,
  141. Max = 1,
  142. Default = .5,
  143. Color = Color3.fromRGB(255, 0, 0),
  144. Increment = .1,
  145. ValueName = "Transparency",
  146. Callback = function(Value)
  147. HB_Settings.Transparency = Value
  148. end
  149. })
  150.  
  151. Tab2:AddSlider({
  152. Name = "WalkSpeed",
  153. Min = 0,
  154. Max = 50,
  155. Default = 16,
  156. Color = Color3.fromRGB(255, 0, 0),
  157. Increment = 1,
  158. ValueName = "WalkSpeed",
  159. Callback = function(Value)
  160. Player.Character.Humanoid.WalkSpeed = Value
  161. end
  162. })
  163.  
  164. Tab3:AddButton({
  165. Name = "Skeleton ESP",
  166. Callback = function(v)
  167. loadstring(game:HttpGet("https://raw.githubusercontent.com/Blissful4992/ESPs/main/SkeletonESP.lua"))()
  168. end
  169. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement