Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Load Orion Library
- local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))()
- -- Create the main window
- local Window = OrionLib:MakeWindow({
- Name = "🛣️ Da Downhill Script 🛣️",
- HidePremium = false,
- SaveConfig = true,
- ConfigFolder = "ControlHub"
- })
- -- Lock Control Tab
- local LockControlTab = Window:MakeTab({
- Name = "Lock Control",
- Icon = "rbxassetid://4483345998"
- })
- LockControlTab:AddButton({
- Name = "👾Enable Purple Lock👾",
- Callback = function()
- getgenv().SettingsLockTripHub = {
- TripHubLockMain = {
- Enabled = true,
- Key = "c",
- DOT = true,
- AIRSHOT = true,
- NOTIF = true,
- AUTOPRED = true,
- FOV = math.huge,
- RESOVLER = false
- }
- }
- loadstring(game:HttpGet("https://raw.githubusercontent.com/elxocasXD/Trip-Hub/main/Scripts/OP%20Dot%20Lock%20(Universal).lua"))()
- end
- })
- LockControlTab:AddButton({
- Name = "🤫Enable Silent Aim😶",
- Callback = function()
- getgenv().Silent = {
- Settings = {
- Enabled = true,
- AimPart = "UpperTorso",
- Prediction = 0.1433,
- WallCheck = true,
- Visualize = true,
- AutoPrediction = true
- },
- FOV = {
- Enabled = true,
- Size = 30,
- Filled = false,
- Thickness = 0.66,
- Transparency = 0.9,
- Color = Color3.fromRGB(255,255,255)
- }
- }
- loadstring(game:HttpGet("https://raw.githubusercontent.com/CyberPlaysYT/Aura-x-update/main/Aura%20x%20updated", true))()
- end
- })
- -- Misc Tab
- local MiscTab = Window:MakeTab({
- Name = "Misc",
- Icon = "rbxassetid://4483345998"
- })
- -- Fly GUI Toggle
- MiscTab:AddButton({
- Name = "✈️Toggle Fly GUI✈️",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/YSL3xKYU'))()
- end
- })
- -- Infinite Yield (Admin)
- MiscTab:AddSection({
- Name = "Infinite Yield (Admin)"
- })
- MiscTab:AddButton({
- Name = "Toggle Infinite Yield",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
- end
- })
- -- Create the Teleports tab
- local TeleportTab = Window:MakeTab({
- Name = "Teleports",
- Icon = "rbxassetid://4483345998"
- })
- -- Predefined teleport locations
- local locations = {
- ["Food🍔"] = Vector3.new(-227.36, 73.91, -807.23),
- ["Gun Shop🔫"] = Vector3.new(-571.53, 60.85, -737.45),
- ["High-Medium Armor🦾"] = Vector3.new(-569.47, 72.60, -603.38)
- }
- -- Function to teleport player
- local function teleport(p)
- local plr = game.Players.LocalPlayer
- if plr and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then
- plr.Character.HumanoidRootPart.CFrame = CFrame.new(p)
- end
- end
- -- Add predefined teleport options
- for name, pos in pairs(locations) do
- TeleportTab:AddButton({
- Name = "Teleport to " .. name,
- Callback = function()
- teleport(pos)
- end
- })
- end
- -- Function to teleport to a player
- local function teleportToPlayer(playerName)
- local player = game.Players:FindFirstChild(playerName)
- if player and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
- -- Teleport the local player to the selected player's position
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame
- else
- print("Could not find player or player's character.")
- end
- end
- -- Update player list and options in dropdown
- local function updateDropdown()
- local playerOptions = {}
- for _, player in pairs(game.Players:GetPlayers()) do
- if player ~= game.Players.LocalPlayer then
- table.insert(playerOptions, player.Name)
- end
- end
- if playerDropdown then
- playerDropdown:UpdateOptions(playerOptions)
- else
- playerDropdown = TeleportTab:AddDropdown({
- Name = "Select Player",
- Options = playerOptions,
- Callback = function(selectedPlayer)
- print("Attempting to teleport to:", selectedPlayer)
- teleportToPlayer(selectedPlayer)
- end
- })
- end
- end
- -- Add button to update player list
- TeleportTab:AddButton({
- Name = "Update Player List",
- Callback = function()
- print("Updating player list...")
- updateDropdown()
- end
- })
- -- Initialize Orion Library
- OrionLib:Init()
- -- Update player list on start
- updateDropdown()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement