Advertisement
Hellotop2

Untitled

Dec 31st, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. -- Objects
  2.  
  3. local SimonSaysAnnounceGui = Instance.new("ScreenGui")
  4. local Title = Instance.new("TextLabel")
  5. local TextBox = Instance.new("TextBox")
  6. local TextButton = Instance.new("TextButton")
  7.  
  8. -- Properties
  9.  
  10. SimonSaysAnnounceGui.Name = "SimonSaysAnnounceGui"
  11. SimonSaysAnnounceGui.Parent = game.CoreGui
  12.  
  13. Title.Name = "Title"
  14. Title.Parent = SimonSaysAnnounceGui
  15. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Title.BorderSizePixel = 0
  17. Title.Position = UDim2.new(0.0120845921, 0, 0.826309085, 0)
  18. Title.Size = UDim2.new(0, 200, 0, 50)
  19. Title.Font = Enum.Font.SourceSans
  20. Title.Text = "Super Simon Says Announce FE"
  21. Title.TextColor3 = Color3.new(0, 0, 0)
  22. Title.TextScaled = true
  23. Title.TextSize = 14
  24. Title.TextWrapped = true
  25.  
  26. TextBox.Parent = SimonSaysAnnounceGui
  27. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  28. TextBox.BorderSizePixel = 0
  29. TextBox.Position = UDim2.new(0.0120845921, 0, 0.909323096, 0)
  30. TextBox.Size = UDim2.new(0, 200, 0, 50)
  31. TextBox.Font = Enum.Font.SourceSans
  32. TextBox.PlaceholderText = "Text you want to announce."
  33. TextBox.Text = "Text you want to announce."
  34. TextBox.TextColor3 = Color3.new(0, 0, 0)
  35. TextBox.TextScaled = true
  36. TextBox.TextSize = 14
  37. TextBox.TextWrapped = true
  38. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  39.  
  40. TextButton.Parent = SimonSaysAnnounceGui
  41. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  42. TextButton.BorderSizePixel = 0
  43. TextButton.Position = UDim2.new(0.187311172, 0, 0.909323096, 0)
  44. TextButton.Size = UDim2.new(0, 170, 0, 50)
  45. TextButton.Font = Enum.Font.SourceSans
  46. TextButton.Text = "Announce"
  47. TextButton.TextColor3 = Color3.new(0, 0, 0)
  48. TextButton.TextScaled = true
  49. TextButton.TextSize = 14
  50. TextButton.TextWrapped = true
  51. TextButton.MouseButton1Click:Connect(function()
  52. local A_1 = 7
  53. local A_2 = TextBox.Text
  54. local A_3 = 5.5
  55. local A_4 = 1.5
  56. local A_5 = true
  57. local A_6 = "Pizza"
  58. local Event = game:GetService("Workspace").BasicCommand
  59. Event:FireServer(A_1, A_2, A_3, A_4, A_5, A_6)
  60. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement