Categories > Exploiting > Scripts >

UI LIB Request

Posts: 181

Threads: 22

Joined: Jul, 2021

Reputation: -20

Posted

Hello , I would like some good ui libs also with an example of player list dropdown where u can select a player and do something too the chooseen player sutch as print 

 

I wish an example of player list dropdown on this ui lib (Being able to print the selected player) https://github.com/AlexR32/Roblox#bracketv3

 

 

Here is an example Of wally ui v2

 

 

 

local playerlist = {}

 

for i,v in pairs(game.Players:GetPlayers())do

    if v ~= game.Players.LocalPlayer then

        table.insert(playerlist,v.Name)

    end

end

 

local w = library:CreateWindow('Example')

local drop = w:Dropdown("Players", {

   flag = "bonk";

   list = playerlist

}, function(new)

   print(new)

end)

 

game.Players.PlayerAdded:Connect(function(player)

    local name = player.Name

    table.insert(playerlist,name)

    drop:Refresh(playerlist)

end)

 

game.Players.PlayerRemoving:Connect(function(player)

    local name = player.Name

    for i,v in pairs(playerlist)do

        if v == name then  

            table.remove(playerlist,i)

        end

    end

    drop:Refresh(playerlist)

end)

 

If anyone wanna copy this method into another ui lib feel free to do!

 

 

  • 0

Syraxes_

Web Developer

vip

Posts: 1072

Threads: 30

Joined: Jul, 2021

Reputation: 63

Replied

Use Kavo UI lib. if you don't know how to make the list of players just look for threads about it.

  • 0

I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.

Posts: 181

Threads: 22

Joined: Jul, 2021

Reputation: -20

Replied

I already have kavo ui lib player list example but i dont like the ui lib anymore and the player list example i have is really buggy for some reasone thats why im looking for a new one

  • 0

Syraxes_

Web Developer

vip

Posts: 1072

Threads: 30

Joined: Jul, 2021

Reputation: 63

Replied

@GoldenCheats

 

Hmm I don't know many UI libs that have the function of dropdown refresh.

  • 0

I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.

Posts: 181

Threads: 22

Joined: Jul, 2021

Reputation: -20

Replied

yeah i had some ui libs that new players dont show in drop down

  • 0

Syraxes_

Web Developer

vip

Posts: 1072

Threads: 30

Joined: Jul, 2021

Reputation: 63

Replied

read the previous publications @Anasusxz

  • 0

I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.

Posts: 181

Threads: 22

Joined: Jul, 2021

Reputation: -20

Replied

 as i said i have kavo already but maybe il rewrite my script and see if it lags with this code @Anasusxz 

 

just compared this too mine and its the exact same one apart from small changes that probably dont matter.

  • 0

Posts: 9

Threads: 1

Joined: Feb, 2022

Reputation: 1

Replied

Yeah, sorry my bad didn't pay attention

  • 0

Posts: 181

Threads: 22

Joined: Jul, 2021

Reputation: -20

Replied

do you have the bracket ui lib example yet? @Anasusxz 

  • 0

Added

 @Anasusxz guess he never came back with the milk lol

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )