Advertisement
alihsaas

Untitled

Jul 7th, 2019
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.53 KB | None | 0 0
  1. local Dialogs = {}
  2. local Player = game.Players.LocalPlayer
  3.  
  4. Dialogs.WelcomeDummy = {  ["Text"] = {
  5.                                 {
  6.                                     ["Text"] = "Welcome",
  7.                                     ["Color"] = Color3.fromRGB(255,255,255),
  8.                                     ["Tween"] = false,
  9.                                     ["Font"] = Enum.Font.Arial
  10.                                 },
  11.                                 {
  12.                                     ["Text"] = Player.Name,
  13.                                     ["Color"] = "Rainbow",
  14.                                     ["Tween"] = true,
  15.                                     ["Font"] = Enum.Font.ArialBold
  16.                                 },
  17.     {
  18.                                     ["Text"] = "to",
  19.                                     ["Color"] = Color3.fromRGB(255,255,255),
  20.                                     ["Tween"] = true,
  21.                                     ["Font"] = Enum.Font.ArialBold
  22.                                 },
  23.     {
  24.                                     ["Text"] = game.Name,
  25.                                     ["Color"] = Color3.fromRGB(0,255,0),
  26.                                     ["Tween"] = true,
  27.                                     ["Font"] = Enum.Font.ArialBold
  28.                                 },
  29.                               },
  30.                       ["Choices"] = { {{
  31.                                     ["Text"] = "Hello there",
  32.                                     ["Color"] = Color3.fromRGB(255,255,255),
  33.                                     ["Tween"] = false,
  34.                                     ["Font"] = Enum.Font.Arial
  35.                                 },
  36.                                 {
  37.                                     ["Text"] = "Dummy",
  38.                                     ["Color"] = "Rainbow",
  39.                                     ["Tween"] = true,
  40.                                     ["Font"] = Enum.Font.Arcade
  41.                                 }
  42.                                  },{{["Text"] = "Bye,",
  43.                                     ["Color"] = Color3.fromRGB(255,255,255),
  44.                                     ["Tween"] = false,
  45.                                     ["Font"] = Enum.Font.Cartoon
  46.                                 },
  47.                                 {
  48.                                     ["Text"] = "I am not interested",
  49.                                     ["Color"] = Color3.fromRGB(255,0,0),
  50.                                     ["Tween"] = true,
  51.                                     ["Font"] = Enum.Font.ArialBold}}}
  52.                    }
  53. return Dialogs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement