Advertisement
Vehnom

Super Simon Says Message GUI.

Aug 24th, 2018
3,862
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. Okay okay, so I uploaded a script to discord and some nice guy made it into a gui for Super Simon says.
  2. Game link: https://www.roblox.com/games/61846006/Super-Simon-Says
  3. Okay enjoy peeps. Copy everything that's under the line :)
  4. ------------------------------------------------------------------------------------------------------------------------------------------
  5. -- Objects
  6.  
  7. local Ecstasy = Instance.new("ScreenGui")
  8. local Title = Instance.new("TextLabel")
  9. local frame = Instance.new("TextLabel")
  10. local f_bottom = Instance.new("TextLabel")
  11. local txt = Instance.new("TextBox")
  12. local send = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. Ecstasy.Name = "Ecstasy"
  17. Ecstasy.Parent = game.CoreGui
  18.  
  19. Title.Name = "Title"
  20. Title.Active = true
  21. Title.Draggable = true
  22. Title.Parent = Ecstasy
  23. Title.BackgroundColor3 = Color3.new(0.0705882, 0.0705882, 0.0705882)
  24. Title.BorderSizePixel = 0
  25. Title.Position = UDim2.new(0, 0, 0.386308074, 0)
  26. Title.Size = UDim2.new(0, 303, 0, 40)
  27. Title.Font = Enum.Font.SourceSansBold
  28. Title.Text = "Ecstasy - Credits to Vehnom#4922 for the message script"
  29. Title.TextColor3 = Color3.new(0.666667, 0, 0)
  30. Title.TextScaled = true
  31. Title.TextSize = 14
  32. Title.TextWrapped = true
  33.  
  34. frame.Name = "frame"
  35. frame.Parent = Ecstasy
  36. frame.BackgroundColor3 = Color3.new(0, 0, 0)
  37. frame.BorderSizePixel = 0
  38. frame.Position = UDim2.new(0, 0, 0.435207814, 0)
  39. frame.Size = UDim2.new(0, 303, 0, 225)
  40. frame.Font = Enum.Font.SourceSansBold
  41. frame.Text = ""
  42. frame.TextColor3 = Color3.new(0.666667, 0, 0)
  43. frame.TextScaled = true
  44. frame.TextSize = 14
  45. frame.TextWrapped = true
  46.  
  47. f_bottom.Name = "f_bottom"
  48. f_bottom.Parent = frame
  49. f_bottom.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  50. f_bottom.BorderSizePixel = 0
  51. f_bottom.Position = UDim2.new(0, 0, 0.999652267, 0)
  52. f_bottom.Size = UDim2.new(0, 303, 0, 8)
  53. f_bottom.Font = Enum.Font.SourceSansBold
  54. f_bottom.Text = ""
  55. f_bottom.TextColor3 = Color3.new(0.666667, 0, 0)
  56. f_bottom.TextSize = 14
  57. f_bottom.TextWrapped = true
  58.  
  59. txt.Name = "txt"
  60. txt.Parent = frame
  61. txt.BackgroundColor3 = Color3.new(1, 1, 1)
  62. txt.BackgroundTransparency = 1
  63. txt.Position = UDim2.new(0.168316826, 0, 0.173333332, 0)
  64. txt.Size = UDim2.new(0, 200, 0, 41)
  65. txt.Font = Enum.Font.SourceSansBold
  66. txt.Text = "Text"
  67. txt.TextColor3 = Color3.new(0.666667, 0, 0)
  68. txt.TextScaled = true
  69. txt.TextSize = 14
  70. txt.TextWrapped = true
  71.  
  72. send.Name = "send"
  73. send.Parent = txt
  74. send.BackgroundColor3 = Color3.new(1, 1, 1)
  75. send.BackgroundTransparency = 1
  76. send.Position = UDim2.new(0.119999997, 0, 1.68292689, 0)
  77. send.Size = UDim2.new(0, 152, 0, 38)
  78. send.Font = Enum.Font.SourceSansBold
  79. send.Text = "Send Message"
  80. send.TextColor3 = Color3.new(1, 0, 0)
  81. send.TextScaled = true
  82. send.TextSize = 14
  83. send.TextWrapped = true
  84.  
  85. send.MouseButton1Click:connect(function()
  86. game.Workspace.BasicCommand:FireServer(7, txt.Text, 5.5, 1.5, true, "Pizza")
  87. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement