---------------------- -- Oogishes TP script #1 TP script -- ---------------------- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Oogish's TP to players OP script", "DarkTheme") local Tab = Window:NewTab("Players") local Section = Tab:NewSection("Teleport") --------------------OP OP OP SUPER SCRIPT LOL0LOLOLOLOLOL players = {} for i,v in pairs(game:GetService("Players"):GetChildren()) do table.insert(players,v.Name) end Section:NewDropdown("Select Player", " ", players, function(abc) Select = abc end) Section:NewButton("Refresh", " ", function() table.clear(players) for i,v in pairs(game:GetService("Players"):GetChildren()) do table.insert(players,v.Name) end end) Section:NewButton("Teleport", " ", function() game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[Select].Character.HumanoidRootPart.CFrame end)