Advertisement
thicclife

aaaaa

Jun 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. cooltab = Instance.new("ScreenGui")
  2. MAIN = Instance.new("Frame")
  3. bar = Instance.new("Frame")
  4. cmd = Instance.new("TextBox")
  5. label = Instance.new("TextLabel")
  6. submit = Instance.new("TextButton")
  7.  
  8. -- properties
  9.  
  10. cooltab.Name = "cooltab"
  11. cooltab.Parent = game.CoreGui
  12.  
  13.  
  14. MAIN.Name = "MAIN"
  15. MAIN.Parent = cooltab
  16. MAIN.Active = true
  17. MAIN.BackgroundColor3 = Color3.new(1, 0.658824, 0.0666667)
  18. MAIN.BorderColor3 = Color3.new(1, 0.658824, 0.0666667)
  19. MAIN.Position = UDim2.new(0.200000003, 0, 0.238955826, 0)
  20. MAIN.Selectable = true
  21. MAIN.Size = UDim2.new(0, 353, 0, 57)
  22.  
  23. bar.Name = "bar"
  24. bar.Parent = MAIN
  25. bar.Active = true
  26. bar.BackgroundColor3 = Color3.new(1, 1, 1)
  27. bar.BorderColor3 = Color3.new(1, 1, 1)
  28. bar.Position = UDim2.new(0, 0, -0.350877196, 0)
  29. bar.Selectable = true
  30. bar.Size = UDim2.new(0, 353, 0, 24)
  31.  
  32. cmd.Name = "cmd"
  33. cmd.Parent = MAIN
  34. cmd.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  35. cmd.BackgroundTransparency = 0.30000001192093
  36. cmd.Position = UDim2.new(0.0260115601, 0, 0.307987571, 0)
  37. cmd.Size = UDim2.new(0, 233, 0, 27)
  38. cmd.Font = Enum.Font.SourceSans
  39. cmd.FontSize = Enum.FontSize.Size24
  40. cmd.Text = "COMMAND"
  41. cmd.TextColor3 = Color3.new(1, 1, 1)
  42. cmd.TextSize = 20
  43. cmd.TextXAlignment = Enum.TextXAlignment.Left
  44.  
  45. label.Name = "label"
  46. label.Parent = MAIN
  47. label.BackgroundColor3 = Color3.new(1, 1, 1)
  48. label.BackgroundTransparency = 1
  49. label.Position = UDim2.new(0, 0, -0.428149015, 0)
  50. label.Size = UDim2.new(0, 167, 0, 31)
  51. label.Font = Enum.Font.SourceSans
  52. label.FontSize = Enum.FontSize.Size28
  53. label.Text = "TEST HUB"
  54. label.TextColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  55. label.TextSize = 25
  56. label.TextXAlignment = Enum.TextXAlignment.Left
  57.  
  58. submit.Name = "submit"
  59. submit.Parent = MAIN
  60. submit.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  61. submit.BackgroundTransparency = 0.30000001192093
  62. submit.Position = UDim2.new(0.711048186, 0, 0.315789461, 0)
  63. submit.Size = UDim2.new(0, 93, 0, 27)
  64. submit.Font = Enum.Font.SourceSans
  65. submit.FontSize = Enum.FontSize.Size24
  66. submit.Text = "Submit"
  67. submit.TextColor3 = Color3.new(1, 1, 1)
  68. submit.TextSize = 20
  69.  
  70. -- junk
  71.  
  72.  
  73. submit.MouseButton1Down:connect(function()
  74. if cmd.Text == "test" then
  75. print ("yo mom")
  76. end
  77.  
  78. end)
  79.  
  80. MAIN.Draggable = true
  81.  
  82. submit.MouseButton1Down:connect(function()
  83. if cmd.Text == "booga craft" then
  84. loadstring(game:HttpGet(('https://pastebin.com/raw/NPc9MFnL'),true))()
  85. end
  86.  
  87. end)
  88.  
  89. submit.MouseButton1Down:connect(function()
  90. if cmd.Text == "beyblade farm" then
  91. loadstring(game:HttpGet(('https://pastebin.com/raw/VnD9ByJ6'),true))()
  92. end
  93.  
  94. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement