Hi, erm, I have loads of scripting that needs to be done for a project I'm doing. What I seriously need done is, so, you have a partner in this project, and I want to make it so at the beginning you can choose between five partners. Like, function on click, and then that partner follows you and yadda. So, can anyone help? I seriously need this. qq
local library = assert(LoadLibrary('RbxGui')) -- load our RbxGui library function onItemSelected(item) -- create our callback that gets called when an item gets selected -- arguments: item (string) print("'" .. item .. "' was selected!") end local listOfItems={"This", "is", "a", "list", "of", "items.","For","Your","Partners"} -- our list of items local dropDownList, updateSelection=library.CreateDropDownMenu(listOfItems, onItemSelected); -- create the drop down list with our list and the callback dropDownList.Size = UDim2.new(1, 0, 1, 0) -- this is to make the drop down list fit in our GUI correctly local holderGui = Instance.new('ScreenGui') -- make the screen gui that holds everything local holderFrame = Instance.new('Frame') -- make a frame to hold the drop down list holderFrame.Size = UDim2.new(0, 200, 0, 26) -- make it the size you want holderFrame.Position = UDim2.new(0.5, -100, 0.5, -20) -- position it the way you want (right now it's in the center) holderFrame.BackgroundTransparency = 1 -- make it transparent for the drop down list holderFrame.Parent = holderGui dropDownList.Parent = holderFrame -- put the drop down list in the frame if game.Players.LocalPlayer then -- make sure we have a player local playerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui"); -- wait for playergui holderGui.Parent = playerGui -- put the screen gui in the playergui end --GoodkidMad
Is this what your looking for?