Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local PabloLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/BatuKvi123/PabloLibV3/main/PabloLibV3"))()
- local window = PabloLib:Create(
- "Weldrt hub", -- Name here.
- "Enabled", -- If you want draggable set here to "Enabled" if you dont want set to "Disabled".
- "p" -- You can put any keybind here to open close.
- )
- local tab1 = window:CreateTab("TSB")
- tab1:CreateButton("Teleport players", function()
- --[[
- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
- ]]
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Simple Teleport", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- local Tab = Window:MakeTab({
- Name = "TP To Players",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local Section = Tab:AddSection({
- Name = "Teleport:"
- })
- local plrs = game.Players
- -- Fetch all player names
- local playerNames = {}
- local players = plrs:GetPlayers()
- for _, player in ipairs(players) do
- table.insert(playerNames, player.Name)
- end
- Tab:AddDropdown({
- Name = "Players",
- Default = playerNames[1] or "No Players",
- Options = playerNames,
- Callback = function(selectedplrName)
- local targetPlayer = plrs:FindFirstChild(selectedplrName)
- if targetPlayer and targetPlayer.Character and targetPlayer.Character:FindFirstChild("HumanoidRootPart") then
- -- Teleporting your character to the selected player's position
- local targetPosition = targetPlayer.Character.HumanoidRootPart.Position
- local localPlayerRoot = plrs.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
- if localPlayerRoot then
- localPlayerRoot.CFrame = CFrame.new(targetPosition)
- end
- end
- print(selectedplrName)
- end
- })
- print("Hello World")
- end)
- tab1:CreateButton("Kj (key: KJAlpha)", function()
- loadstring(game:HttpGet("https://voidy.lol/KJkeynewtemporary.lua",true))()
- print("Hello World")
- end)
- tab1:CreateLabel("Another hub")
- tab1:CreateButton("FFJ HUB", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/FFJ1/Roblox-Exploits/main/scripts/TSBUtils.lua"))()
- print("Hello World")
- end)
- local tab1 = window:CreateTab("Brookhaven")
- tab1:CreateButton("R4D", function()
- --[[
- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
- ]]
- loadstring(game:HttpGet('https://raw.githubusercontent.com/M1ZZ001/BrookhavenR4D/main/Brookhaven%20R4D%20Script'))()
- print("Hello World")
- end)
- tab1:CreateLabel("Universal hub")
- tab1:CreateButton("Sky hub", function()
- --[[
- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
- ]]
- loadstring(game:HttpGet("https://raw.githubusercontent.com/yofriendfromschool1/Sky-Hub/main/SkyHub.txt"))()
- print("Hello World")
- end)
- local tab1 = window:CreateTab("Option")
- tab1:CreateButton("Close", function()
- PabloLib:Close()
- print("Hello World")
- end)
- tab1:CreateLabel("you can reopen on executing the script again.")
- tab1:CreateLabel("Full option soon...")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement