Advertisement
TotallyGames

Color Script

Feb 17th, 2024
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | Source Code | 0 0
  1. script.Parent.MouseEnter:Connect(function()
  2.     script.Parent.ImageTransparency = 0
  3.     script.Parent.ImageColor3 = Color3.fromRGB(200,200,200)
  4. end)
  5. script.Parent.MouseLeave:Connect(function()
  6.     script.Parent.ImageTransparency = 0.5
  7.     script.Parent.ImageColor3 = Color3.fromRGB(255,255,255)
  8. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement