Advertisement
MaxproGlitcher

Bulle Multicore By Max .lua

Aug 12th, 2023 (edited)
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification",{
  2. Title = "Texte Color",
  3. Text = "Script a été executer",
  4. Icon = "rbxassetid://11823384169",
  5. Duration = 15
  6. })
  7.  
  8. --permet également le chat à bulles
  9.  
  10. textcolour = Color3.new(0,0,0)
  11.  
  12. game:GetService("Chat").BubbleChatEnabled = true
  13.  
  14. coroutine.wrap(function()
  15. while wait() do
  16. for i = 0,255,10 do
  17. textcolour = Color3.new(255/255,i/255,0/255)
  18. wait()
  19. end
  20. for i = 255,0,-10 do
  21. textcolour = Color3.new(i/255,255/255,0/255)
  22. wait()
  23. end
  24. for i = 0,255,10 do
  25. textcolour = Color3.new(0/255,255/255,i/255)
  26. wait()
  27. end
  28. for i = 255,0,-10 do
  29. textcolour = Color3.new(0/255,i/255,255/255)
  30. wait()
  31. end
  32. for i = 0,255,10 do
  33. textcolour = Color3.new(i/255,0/255,255/255)
  34. wait()
  35. end
  36. for i = 255,0,-10 do
  37. textcolour = Color3.new(255/255,0/255,i/255)
  38. wait()
  39. end
  40. end
  41. end)()
  42.  
  43. local settings = {
  44.  
  45. }
  46.  
  47. while wait() do
  48. pcall(function()
  49. game:GetService("Chat"):SetBubbleChatSettings({
  50. TextColor3 = textcolour,
  51. -- Temps d'attente, en secondes, avant qu'une bulle ne s'éteigne.
  52. BubbleDuration = 20,
  53. -- Nombre de messages à afficher avant que les anciens ne disparaissent
  54. -- immédiatement lorsqu'un nouveau message arrive.
  55. MaxBubbles = 20,
  56.  
  57. -- Style des bulles. Ces paramètres modifient divers aspects visuels.
  58. BackgroundColor3 = Color3.fromRGB(0, 0, 0),
  59. TextSize = 16,
  60. Font = Enum.Font.Ubuntu, --Enum.Font.GothamSemibold
  61. Transparency = .1,
  62. CornerRadius = UDim.new(0, 30),
  63. TailVisible = true,
  64. Padding = 8, -- in pixels
  65. MaxWidth = 500, --in pixels
  66.  
  67. -- Espace supplémentaire entre la tête et le panneau d'affichage (utile si vous voulez
  68. -- Extra space between the head and the display panel (useful if you want to
  69. VerticalStudsOffset = 0,
  70.  
  71. -- Espace en pixels entre deux bulles
  72. BubblesSpacing = 3,
  73.  
  74. -- Distance (par rapport à la caméra) à laquelle les bulles se transforment en une seule bulle.
  75. -- avec des ellipses (...) pour indiquer le bavardage..
  76. MinimizeDistance = 250,
  77. -- Distance maximale (par rapport à la caméra) à laquelle les bulles sont affichées
  78. MaxDistance = 500,
  79. })
  80. end)
  81. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement