Loading...
Loading...
Roblox: Universal Tp to player Experience the full potential of this Roblox script, with Universal Tp to Player offering seamless travel and improved gameplay....
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)
Sign in to leave a comment
No comments yet.