Advertisement
Mrwill9000

Have Fun :D

Sep 28th, 2020
2,434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.19 KB | None | 0 0
  1. --Improved by er253.You're welcome!
  2. local GenerateSpeed = math.random(1, 10) --How fast it generates the text in chat. (Copy this on line 134.)
  3. local MaxMessages = 350 --After how much messages to stop.
  4.  
  5. --//User Name List
  6. local UserNameList = {
  7.     "BaconHairs554",
  8.     "Ammygoes",
  9.     "Zackurberg4",
  10.     "Ihatflamgo",
  11.     "LukaRoblox_95",
  12.     "Mybro_they2",
  13.     "UKgoverment_3478",
  14.     "Gargamel",
  15.     "Domkill2",
  16.     "Amy_23987",
  17.     "ThatOnePerson",
  18.     "Slmccl",
  19.     "BirdieHaxs",
  20.     "TheBigG",
  21.     "MadsMaxs_45",
  22.     "Guest64",
  23.     "Minecratft_Lover",
  24.     "FourNations",
  25.     "TheBlueFlame33",
  26.     "TheRiightWey3",
  27.     "GetGlood333689",
  28.     "UwU_GetUWUD34",
  29.     "MyFavoriteChild3287",
  30.     "EvilMan3000",
  31.     "PufferFishyy2",
  32.     "gtgmax5",
  33.     "LifeInParadiceCreator490",
  34.     "GTAofficial_real",
  35.     "femalemaleman_yes3",
  36.     "TheWhiteFoxYT"
  37. }
  38. --\\User Name List
  39.  
  40. --//Message List
  41. local MessageList = {
  42.     "Hello",
  43.     "Hi",
  44.     "Bye",
  45.     "Goodbye",
  46.     "Adios",
  47.     "Stupid Child",
  48.     "MILk",
  49.     "*Dies cutely*",
  50.     "Why my lagging?",
  51.     "IM NO NOOB",
  52.     "I hate you",
  53.     "How are you?",
  54.     "Anyone wants a massage?",
  55.     "Follow the instructions",
  56.     "Timmy stop",
  57.     "*Sleeps*",
  58.     "Falls down*",
  59.     "My dad is going to ban you he works for roblox",
  60.     "*bullys*",
  61.     "IM SO sad",
  62.     "Stop !!!",
  63.     "Grabs by the hands*",
  64.     "Will u love me?",
  65.     "DONT TOUCH MY TAIL !!",
  66.     "Fat man.",
  67.     "U so poor bacon hair",
  68.     "XD",
  69.     "You are looking good today",
  70.     "What the heck",
  71.     "STOP IT!!!",
  72.     "Everyone Report he scamming my",
  73.     "HACKER",
  74.     "Eats Apple*",
  75.     "Am i pertty?",
  76.     "*Drinks milk Cutely*",
  77.     "DONT SAY THAT!!!1!!",
  78.     "Im sorry",
  79.     "*Hits*",
  80.     "*Gulp*",
  81.     "*Blocks*",
  82.     "I DONT WANT TO GO TO SCHOOL",
  83.     "stop it",
  84.     "Jimmy is bad tonight",
  85.     "Ur grounded!",
  86.     "get noob",
  87.     "ur evil!",
  88.     "i lik u",
  89.     "rich",
  90.     "good night honey!",
  91.     "thanks moms",
  92.     "mama",
  93.     "lol!",
  94.     "i dont understand",
  95.     "do you has grammer??",
  96.     "House for?",
  97.     "Lets go play something else",
  98.     "friends?",
  99.     "i gtg bye",
  100.     "IM QUITTING ROBLOX ITS SO BADD",
  101.     "Put your phone in the microwave for 3 minutes",
  102.     "my phone is broken the teleport wont work",
  103.     "im so rich.",
  104.     "haha no roux",
  105.     "me neither",
  106.     "no",
  107.     "i refuse",
  108.     "do you want some pizza?",
  109.     "THIS IS TOO MUCH CALORIES!",
  110.     "Domkill2 why wont you respond",
  111.     "Im going afk for sec",
  112.     "amma go get a drink",
  113.     "???",
  114.     "?",
  115.     "how do i noclip like he did?",
  116.     "im bacon hair.",
  117.     "u ded",
  118.     "*epicly kills*",
  119.     "*dies*"
  120. }
  121. --\\Message List
  122.  
  123. local CurrentMessageCount = 0 --The current message count (Don't change!)
  124.  
  125. print("Message Count: " .. #MessageList)
  126. print("Username Count: " .. #UserNameList)
  127. print("Starting...")
  128. wait(1)
  129.  
  130. --//Main Generation Script
  131. while wait(GenerateSpeed) do
  132.     if CurrentMessageCount ~= MaxMessages then
  133.         CurrentMessageCount += 1
  134.          GenerateSpeed = math.random(1, 20)
  135.         local RandomMessage = math.random(1, #MessageList)
  136.         local RandomName = math.random(1, #UserNameList)
  137.         bc = BrickColor.new("White")
  138.         game.StarterGui:SetCore("ChatMakeSystemMessage", {
  139.             Text = "[" .. UserNameList[RandomName] .. "]: " .. MessageList[RandomMessage];
  140.             Font = Enum.Font.Cartoon;
  141.             Color = bc.Color;
  142.             FontSize = Enum.FontSize.Size96;
  143.         })
  144.     else
  145.         print("Script eneded.")
  146.         script.Disabled = true
  147.         return
  148.     end
  149. end
  150. --\\Main Generation Script
  151.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement