Advertisement
DerekLuciano

Script para cerrar un botón

Jul 21st, 2021
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. local value = script.Parent.Parent.Parent.Value --Invocar el value
  2. local button = script.Parent
  3. local frame = script.Parent.Parent --Invocar el frame
  4.  
  5. button.MouseButton1Click:Connect(function()
  6. value.Value = false
  7. frame.Visible = false
  8. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement