Advertisement
Vzurxy

[Atom] GUESS THAT DRAWING GUI

Sep 11th, 2018
2,120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. local noreset = true -- Set true to false if gui doesn't work!
  2.  
  3. local op = true -- if true then it will automatically say the answer
  4.  
  5. -- // Made By Atom#0995 \\ --
  6.  
  7. -- // Game : https://www.roblox.com/games/2127915760/Guess-That-Drawing?nl=true
  8.  
  9.  
  10. -- // Objects \\ --
  11. game.StarterGui:SetCore("SendNotification",
  12. {Title="Executed",
  13. Text="Loaded in dank gui by sirfrost/atom",
  14. Duration=4})
  15.  
  16. local CheckAnswer = Instance.new("ScreenGui")
  17. local BG = Instance.new("Frame")
  18. local BGDETAIL = Instance.new("Frame")
  19. local Info = Instance.new("TextLabel")
  20. local Answer = Instance.new("TextLabel")
  21.  
  22. -- // Properties \\ --
  23.  
  24. CheckAnswer.Name = "CheckAnswer"
  25. CheckAnswer.Parent = game.Players.LocalPlayer.PlayerGui
  26.  
  27. BG.Name = "BG"
  28. BG.Parent = CheckAnswer
  29. BG.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  30. BG.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  31. BG.Position = UDim2.new(0.014851952, 0, 0.884462178, 0)
  32. BG.Size = UDim2.new(0, 162, 0, 45)
  33. BG.Active = true
  34. BG.Draggable = true
  35.  
  36. if noreset == true then
  37. BG.ResetOnSpawn = false
  38. end
  39.  
  40. BGDETAIL.Name = "BGDETAIL"
  41. BGDETAIL.Parent = BG
  42. BGDETAIL.BackgroundColor3 = Color3.new(1, 0.984314, 0.439216)
  43. BGDETAIL.BorderColor3 = Color3.new(1, 0.984314, 0.439216)
  44. BGDETAIL.BorderSizePixel = 0
  45. BGDETAIL.Position = UDim2.new(0, 0, 0.288888901, 0)
  46. BGDETAIL.Size = UDim2.new(0, 162, 0, 2)
  47.  
  48. Info.Name = "Info"
  49. Info.Parent = BG
  50. Info.BackgroundColor3 = Color3.new(1, 1, 1)
  51. Info.BackgroundTransparency = 1
  52. Info.BorderSizePixel = 0
  53. Info.Size = UDim2.new(0, 162, 0, 13)
  54. Info.Font = Enum.Font.SourceSansBold
  55. Info.Text = "Answer is:"
  56. Info.TextColor3 = Color3.new(1, 1, 1)
  57. Info.TextSize = 14
  58.  
  59. Answer.Name = "Answer"
  60. Answer.Parent = BG
  61. Answer.BackgroundColor3 = Color3.new(1, 1, 1)
  62. Answer.BackgroundTransparency = 1
  63. Answer.BorderSizePixel = 0
  64. Answer.Position = UDim2.new(0, 0, 0.333333343, 0)
  65. Answer.Size = UDim2.new(0, 162, 0, 30)
  66. Answer.Font = Enum.Font.SourceSansBold
  67. Answer.Text = "..."
  68. Answer.TextColor3 = Color3.new(1, 1, 1)
  69. Answer.TextSize = 14
  70.  
  71. -- // Scripting \\ --
  72.  
  73. while true do
  74. wait(1)
  75. local go = game.Players.LocalPlayer.PlayerGui.SelectedWord.Frame.VariableText.Text
  76. Answer.Text = go
  77. while op == true then
  78. while true do
  79. wait(2)
  80. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(""..go, "All")
  81. end
  82. end
  83. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement