Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ----------------------
- -- SHARK X HUB NO 1 --
- ----------------------
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("SHARK X HUB", "DarkTheme")
- local Tab = Window:NewTab("Players")
- local Section = Tab:NewSection("Teleport")
- --------------------
- 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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement