Advertisement
TypicalHaxYT

segway spawner v3

Jul 30th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.97 KB | None | 0 0
  1. -- Objects
  2.  
  3. local SegwaySpawnerGui = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local SpawnSegway = Instance.new("TextButton")
  6. local RemoveSegway = Instance.new("TextButton")
  7. local Name = Instance.new("TextLabel")
  8. local Credits = Instance.new("TextLabel")
  9. local ImageLabel = Instance.new("ImageLabel")
  10. local Outline = Instance.new("TextLabel")
  11. local DiscordCredits = Instance.new("TextLabel")
  12. local Close = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. SegwaySpawnerGui.Name = "Segway Spawner Gui"
  17. SegwaySpawnerGui.Parent = game.CoreGui
  18. SegwaySpawnerGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = SegwaySpawnerGui
  22. Main.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  23. Main.BorderColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  24. Main.BorderSizePixel = 5
  25. Main.Position = UDim2.new(0.516969204, 0, 0.521888256, 0)
  26. Main.Size = UDim2.new(0, 511, 0, 343)
  27. Main.Visible = true
  28. Main.Active = true
  29. Main.Draggable = true
  30.  
  31. SpawnSegway.Name = "Spawn Segway"
  32. SpawnSegway.Parent = Main
  33. SpawnSegway.BackgroundColor3 = Color3.new(0, 0, 0)
  34. SpawnSegway.BorderColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  35. SpawnSegway.Position = UDim2.new(0.589041054, 0, 0.169096217, 0)
  36. SpawnSegway.Size = UDim2.new(0, 200, 0, 83)
  37. SpawnSegway.Style = Enum.ButtonStyle.RobloxButton
  38. SpawnSegway.Font = Enum.Font.Garamond
  39. SpawnSegway.Text = "Spawn Segway"
  40. SpawnSegway.TextColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  41. SpawnSegway.TextScaled = true
  42. SpawnSegway.TextSize = 14
  43. SpawnSegway.TextWrapped = true
  44. SpawnSegway.MouseButton1Down:connect(function()
  45. workspace.SegwayEvents.SegwayEvent:FireServer()
  46. end)
  47.  
  48. RemoveSegway.Name = "Remove Segway"
  49. RemoveSegway.Parent = Main
  50. RemoveSegway.BackgroundColor3 = Color3.new(0, 0, 0)
  51. RemoveSegway.BorderColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  52. RemoveSegway.Position = UDim2.new(0.589041054, 0, 0.516034961, 0)
  53. RemoveSegway.Size = UDim2.new(0, 200, 0, 83)
  54. RemoveSegway.Style = Enum.ButtonStyle.RobloxButton
  55. RemoveSegway.Font = Enum.Font.Garamond
  56. RemoveSegway.Text = "Remove Segway's"
  57. RemoveSegway.TextColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  58. RemoveSegway.TextScaled = true
  59. RemoveSegway.TextSize = 14
  60. RemoveSegway.TextWrapped = true
  61. RemoveSegway.MouseButton1Down:connect(function()
  62. workspace.SegwayEvents.SegwayEventRemove:FireServer()
  63. end)
  64.  
  65. Name.Name = "Name"
  66. Name.Parent = Main
  67. Name.BackgroundColor3 = Color3.new(0, 0.000507498, 0.000507498)
  68. Name.BorderColor3 = Color3.new(0, 0.000507498, 0.000507498)
  69. Name.Size = UDim2.new(0, 511, 0, 50)
  70. Name.Font = Enum.Font.Garamond
  71. Name.Text = "Fe Segway Spawner V3"
  72. Name.TextColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  73. Name.TextScaled = true
  74. Name.TextSize = 14
  75. Name.TextWrapped = true
  76.  
  77. Credits.Name = "Credits"
  78. Credits.Parent = Main
  79. Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  80. Credits.BorderColor3 = Color3.new(0, 0.000507498, 0.000507498)
  81. Credits.Position = UDim2.new(0, 0, 0.775510192, 0)
  82. Credits.Size = UDim2.new(0, 402, 0, 77)
  83. Credits.Font = Enum.Font.Garamond
  84. Credits.Text = "Subscribe To Ultimate Trolling Guy On YT And Click The Bell :D"
  85. Credits.TextColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  86. Credits.TextScaled = true
  87. Credits.TextSize = 14
  88. Credits.TextWrapped = true
  89.  
  90. ImageLabel.Parent = Main
  91. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  92. ImageLabel.Position = UDim2.new(0.784735799, 0, 0.775510192, 0)
  93. ImageLabel.Size = UDim2.new(0, 110, 0, 77)
  94. ImageLabel.Image = "http://www.roblox.com/asset/?id=5431357141"
  95.  
  96. Outline.Name = "Outline"
  97. Outline.Parent = Main
  98. Outline.BackgroundColor3 = Color3.new(0, 0, 0)
  99. Outline.BorderColor3 = Color3.new(0, 0, 0)
  100. Outline.Position = UDim2.new(0.520547926, 0, 0.145772591, 0)
  101. Outline.Size = UDim2.new(0, 15, 0, 216)
  102. Outline.Font = Enum.Font.SourceSans
  103. Outline.Text = ""
  104. Outline.TextColor3 = Color3.new(0, 0, 0)
  105. Outline.TextSize = 14
  106.  
  107. DiscordCredits.Name = "Discord Credits"
  108. DiscordCredits.Parent = Main
  109. DiscordCredits.BackgroundColor3 = Color3.new(0, 0, 0)
  110. DiscordCredits.BorderColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  111. DiscordCredits.BorderSizePixel = 5
  112. DiscordCredits.Position = UDim2.new(0, 0, 0.169096217, 0)
  113. DiscordCredits.Size = UDim2.new(0, 255, 0, 194)
  114. DiscordCredits.Font = Enum.Font.Garamond
  115. DiscordCredits.Text = "Join the discord here https://discord.gg/SdmvQW"
  116. DiscordCredits.TextColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  117. DiscordCredits.TextScaled = true
  118. DiscordCredits.TextSize = 14
  119. DiscordCredits.TextWrapped = true
  120.  
  121. Close.Name = "Close"
  122. Close.Parent = Main
  123. Close.BackgroundColor3 = Color3.new(0, 0.000507498, 0.000507498)
  124. Close.BorderColor3 = Color3.new(0, 0.000507498, 0.000507498)
  125. Close.Position = UDim2.new(0.882583141, 0, 0, 0)
  126. Close.Size = UDim2.new(0, 60, 0, 50)
  127. Close.Font = Enum.Font.SourceSans
  128. Close.Text = "X"
  129. Close.TextColor3 = Color3.new(0.647059, 0.188235, 0.839216)
  130. Close.TextScaled = true
  131. Close.TextSize = 14
  132. Close.TextWrapped = true
  133. Close.MouseButton1Down:connect(function()
  134. Main.Visible = false
  135. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement