K1ngBlitzy

dark mode bubble

Dec 28th, 2020 (edited)
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local Player = Players.LocalPlayer
  3. local PlayerGui = Player:WaitForChild("PlayerGui")
  4. local BubbleChatUI = PlayerGui:WaitForChild("BubbleChat")
  5. BubbleChatUI.DescendantAdded:Connect(function(Descendant)
  6. if Descendant:IsA("ImageLabel") then
  7. Descendant.ImageColor3 = Color3.fromRGB(59, 59, 59)
  8. elseif Descendant:IsA("TextLabel") then
  9. Descendant.TextColor3 = Color3.new(1,1,1)
  10. end
  11. end)
Add Comment
Please, Sign In to add comment