Advertisement
ERROR_CODE

Constructor

Oct 24th, 2024 (edited)
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.34 KB | None | 0 0
  1. -- Создаем ScreenGui
  2. local screenGui = Instance.new("ScreenGui")
  3. screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  4.  
  5. -- Создаем основную кнопку
  6. local mainButton = Instance.new("TextButton")
  7. mainButton.Size = UDim2.new(0, 200, 0, 50)
  8. mainButton.Position = UDim2.new(0.5, -100, 0.5, -25)
  9. mainButton.Text = "Создать кнопку"
  10. mainButton.Parent = screenGui
  11.  
  12. -- Счетчик для уникальных действий
  13. --local buttonCounter = 0
  14.  
  15. -- Функция для создания новой кнопки
  16. local function createNewButton()
  17.   --  buttonCounter = buttonCounter + 1
  18.     --local currentCounter = buttonCounter
  19.     local newButton = Instance.new("TextButton")
  20.     newButton.Size = UDim2.new(0, 100, 0, 50)
  21.     newButton.Position = UDim2.new(math.random(), 0, math.random(), 0)
  22.     newButton.Text = "Новая кнопка"
  23.     newButton.Parent = screenGui
  24.  
  25.     -- Уникальное действие для каждой кнопки
  26.     newButton.MouseButton1Click:Connect(function()
  27.         print("Нажата новая кнопка с уникальным действием 2")
  28.         newButton.Text = "Нажата!"
  29.     end)
  30. end
  31.  
  32. -- Привязываем функцию к основной кнопке
  33. mainButton.MouseButton1Click:Connect(createNewButton)
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement