Advertisement
BohemainWax

Da DownHill Script New Version

Aug 21st, 2024
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | Gaming | 0 0
  1. -- Load Orion Library
  2. local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))()
  3.  
  4. -- Create the main window
  5. local Window = OrionLib:MakeWindow({
  6. Name = "🛣️ Da Downhill Script 🛣️",
  7. HidePremium = false,
  8. SaveConfig = true,
  9. ConfigFolder = "ControlHub"
  10. })
  11.  
  12. -- Lock Control Tab
  13. local LockControlTab = Window:MakeTab({
  14. Name = "Lock Control",
  15. Icon = "rbxassetid://4483345998"
  16. })
  17.  
  18. LockControlTab:AddButton({
  19. Name = "👾Enable Purple Lock👾",
  20. Callback = function()
  21. getgenv().SettingsLockTripHub = {
  22. TripHubLockMain = {
  23. Enabled = true,
  24. Key = "c",
  25. DOT = true,
  26. AIRSHOT = true,
  27. NOTIF = true,
  28. AUTOPRED = true,
  29. FOV = math.huge,
  30. RESOVLER = false
  31. }
  32. }
  33. loadstring(game:HttpGet("https://raw.githubusercontent.com/elxocasXD/Trip-Hub/main/Scripts/OP%20Dot%20Lock%20(Universal).lua"))()
  34. end
  35. })
  36.  
  37. LockControlTab:AddButton({
  38. Name = "🤫Enable Silent Aim😶",
  39. Callback = function()
  40. getgenv().Silent = {
  41. Settings = {
  42. Enabled = true,
  43. AimPart = "UpperTorso",
  44. Prediction = 0.1433,
  45. WallCheck = true,
  46. Visualize = true,
  47. AutoPrediction = true
  48. },
  49. FOV = {
  50. Enabled = true,
  51. Size = 30,
  52. Filled = false,
  53. Thickness = 0.66,
  54. Transparency = 0.9,
  55. Color = Color3.fromRGB(255,255,255)
  56. }
  57. }
  58. loadstring(game:HttpGet("https://raw.githubusercontent.com/CyberPlaysYT/Aura-x-update/main/Aura%20x%20updated", true))()
  59. end
  60. })
  61.  
  62. -- Misc Tab
  63. local MiscTab = Window:MakeTab({
  64. Name = "Misc",
  65. Icon = "rbxassetid://4483345998"
  66. })
  67.  
  68. -- Fly GUI Toggle
  69. MiscTab:AddButton({
  70. Name = "✈️Toggle Fly GUI✈️",
  71. Callback = function()
  72. loadstring(game:HttpGet('https://pastebin.com/raw/YSL3xKYU'))()
  73. end
  74. })
  75.  
  76. -- Infinite Yield (Admin)
  77. MiscTab:AddSection({
  78. Name = "Infinite Yield (Admin)"
  79. })
  80. MiscTab:AddButton({
  81. Name = "Toggle Infinite Yield",
  82. Callback = function()
  83. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  84. end
  85. })
  86.  
  87. -- Create the Teleports tab
  88. local TeleportTab = Window:MakeTab({
  89. Name = "Teleports",
  90. Icon = "rbxassetid://4483345998"
  91. })
  92.  
  93. -- Predefined teleport locations
  94. local locations = {
  95. ["Food🍔"] = Vector3.new(-227.36, 73.91, -807.23),
  96. ["Gun Shop🔫"] = Vector3.new(-571.53, 60.85, -737.45),
  97. ["High-Medium Armor🦾"] = Vector3.new(-569.47, 72.60, -603.38)
  98. }
  99.  
  100. -- Function to teleport player
  101. local function teleport(p)
  102. local plr = game.Players.LocalPlayer
  103. if plr and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then
  104. plr.Character.HumanoidRootPart.CFrame = CFrame.new(p)
  105. end
  106. end
  107.  
  108. -- Add predefined teleport options
  109. for name, pos in pairs(locations) do
  110. TeleportTab:AddButton({
  111. Name = "Teleport to " .. name,
  112. Callback = function()
  113. teleport(pos)
  114. end
  115. })
  116. end
  117.  
  118. -- Function to teleport to a player
  119. local function teleportToPlayer(playerName)
  120. local player = game.Players:FindFirstChild(playerName)
  121. if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  122. -- Teleport the local player to the selected player's position
  123. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame
  124. else
  125. print("Could not find player or player's character.")
  126. end
  127. end
  128.  
  129. -- Update player list and options in dropdown
  130. local function updateDropdown()
  131. local playerOptions = {}
  132. for _, player in pairs(game.Players:GetPlayers()) do
  133. if player ~= game.Players.LocalPlayer then
  134. table.insert(playerOptions, player.Name)
  135. end
  136. end
  137.  
  138. if playerDropdown then
  139. playerDropdown:UpdateOptions(playerOptions)
  140. else
  141. playerDropdown = TeleportTab:AddDropdown({
  142. Name = "Select Player",
  143. Options = playerOptions,
  144. Callback = function(selectedPlayer)
  145. print("Attempting to teleport to:", selectedPlayer)
  146. teleportToPlayer(selectedPlayer)
  147. end
  148. })
  149. end
  150. end
  151.  
  152. -- Add button to update player list
  153. TeleportTab:AddButton({
  154. Name = "Update Player List",
  155. Callback = function()
  156. print("Updating player list...")
  157. updateDropdown()
  158. end
  159. })
  160.  
  161. -- Initialize Orion Library
  162. OrionLib:Init()
  163.  
  164. -- Update player list on start
  165. updateDropdown()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement