Advertisement
MateoRivera13

Scripts 1 (tutorial)

Nov 17th, 2019
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. --Script para que cambie la part de color--
  2. while true do
  3. script.Parent.BrickColor = BrickColor.new("Bright blue") --cambia el color que quieras pero solo donde dice blue--
  4. wait(0.9) --cambia el tiempo si quieres de cuando cambie el color--
  5. script.Parent.BrickColor = BrickColor.new("Bright red")
  6. wait(0.9) --cambia el tiempo si quieres de cuando cambie el color--
  7. script.Parent.BrickColor = BrickColor.new("Bright yellow")
  8. wait(0.9) --cambia el tiempo si quieres de cuando cambie el color--
  9. end
  10.  
  11. --script del menu-- --has un ScreenGui y despues as un frame y luego coloca un TextButton y cambia el texto al que quieras que salga y el fondo del frame si quieres y cambie la el lugar del texbutton donde quieras que salga
  12. y coloca un script en el texbutton--
  13.  
  14. script: local Menu = script.Parent.Parent
  15.  
  16. script.Parent.MouseButton1Click:Connect(function()
  17. if Menu.Visible == false then
  18. Menu.Visible = false
  19. elseif Menu.Visible == true then
  20. Menu.Visible = false
  21. end
  22. end)
  23.  
  24. --para que salga en el Output--
  25. print("Hola") --cambia el texto al que quieras--
  26. wait(1)
  27. print("XD") --aqui has lo mismo que arriba--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement