Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1.  
  2. local RobloxGui = Instance.new("ScreenGui")
  3. local maingui = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local close = Instance.new("TextButton")
  6. local AutoSell = Instance.new("TextButton")
  7. local AutoFarm = Instance.new("TextButton")
  8. local opengui = Instance.new("Frame")
  9. local open = Instance.new("TextButton")
  10. --Properties:
  11. RobloxGui.Name = "RobloxGui"
  12. RobloxGui.Parent = game.CoreGui
  13.  
  14. maingui.Active = true
  15. maingui.Draggable = true
  16.  
  17. maingui.Name = "maingui"
  18. maingui.Parent = RobloxGui
  19. maingui.BackgroundColor3 = Color3.new(0.290196, 0.882353, 1)
  20. maingui.BorderColor3 = Color3.new(0, 0, 0)
  21. maingui.BorderSizePixel = 4
  22. maingui.Position = UDim2.new(0.253182471, 0, 0.207171321, 0)
  23. maingui.Size = UDim2.new(0, 349, 0, 222)
  24. maingui.Visible = false
  25.  
  26. TextLabel.Parent = maingui
  27. TextLabel.BackgroundColor3 = Color3.new(0.290196, 0.882353, 1)
  28. TextLabel.BorderSizePixel = 0
  29. TextLabel.Position = UDim2.new(0.191977084, 0, 0, 0)
  30. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  31. TextLabel.Font = Enum.Font.Fantasy
  32. TextLabel.Text = "Saber Simulator Gui"
  33. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  34. TextLabel.TextScaled = true
  35. TextLabel.TextSize = 14
  36. TextLabel.TextWrapped = true
  37.  
  38. close.Name = "close"
  39. close.Parent = maingui
  40. close.BackgroundColor3 = Color3.new(0.290196, 0.882353, 1)
  41. close.BorderSizePixel = 0
  42. close.Position = UDim2.new(0.899713516, 0, 0, 0)
  43. close.Size = UDim2.new(0, 35, 0, 12)
  44. close.Font = Enum.Font.Fantasy
  45. close.Text = "x"
  46. close.TextColor3 = Color3.new(0, 0, 0)
  47. close.TextScaled = true
  48. close.TextSize = 50
  49. close.TextWrapped = true
  50. close.MouseButton1Click:connect(function()
  51. maingui.Visible = false
  52. opengui.Visible = true
  53. end)
  54.  
  55. AutoSell.Name = "Auto Sell"
  56. AutoSell.Parent = maingui
  57. AutoSell.BackgroundColor3 = Color3.new(0.290196, 0.882353, 1)
  58. AutoSell.BorderSizePixel = 0
  59. AutoSell.Position = UDim2.new(0.272206306, 0, 0.339622647, 0)
  60. AutoSell.Size = UDim2.new(0, 143, 0, 33)
  61. AutoSell.Font = Enum.Font.Fantasy
  62. AutoSell.Text = "Auto Sell"
  63. AutoSell.TextColor3 = Color3.new(0, 0, 0)
  64. AutoSell.TextScaled = true
  65. AutoSell.TextSize = 14
  66. AutoSell.TextWrapped = true
  67. AutoSell.MouseButton1Click:connect(function()
  68. while true do
  69. wait(1)
  70. local event = game.ReplicatedStorage.Events.Sell
  71. event:FireServer(sell)
  72. end
  73. end)
  74. print("working")
  75.  
  76. AutoFarm.Name = "Auto Farm"
  77. AutoFarm.Parent = maingui
  78. AutoFarm.BackgroundColor3 = Color3.new(0.290196, 0.882353, 1)
  79. AutoFarm.BorderSizePixel = 0
  80. AutoFarm.Position = UDim2.new(0.272206306, 0, 0.540540516, 0)
  81. AutoFarm.Size = UDim2.new(0, 143, 0, 33)
  82. AutoFarm.Font = Enum.Font.Fantasy
  83. AutoFarm.Text = "Auto Farm"
  84. AutoFarm.TextColor3 = Color3.new(0, 0, 0)
  85. AutoFarm.TextScaled = true
  86. AutoFarm.TextSize = 14
  87. AutoFarm.TextWrapped = true
  88. AutoFarm.MouseButton1Click:connect(function()
  89. while wait() do
  90. local Event = game:GetService("ReplicatedStorage").Events.Clicked
  91. Event:FireServer()
  92. end
  93. end)
  94. print("working")
  95.  
  96. opengui.Name = "opengui"
  97. opengui.Parent = RobloxGui
  98. opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  99. opengui.BorderSizePixel = 2
  100. opengui.Position = UDim2.new(0.418670446, 0, 0, 0)
  101. opengui.Size = UDim2.new(0, 100, 0, 21)
  102.  
  103. open.Name = "open"
  104. open.Parent = opengui
  105. open.BackgroundColor3 = Color3.new(1, 1, 1)
  106. open.BorderSizePixel = 2
  107. open.Size = UDim2.new(0, 100, 0, 21)
  108. open.Font = Enum.Font.Fantasy
  109. open.Text = "Open"
  110. open.TextColor3 = Color3.new(0, 0, 0)
  111. open.TextScaled = true
  112. open.TextSize = 14
  113. open.TextWrapped = true
  114. open.MouseButton1Click:connect(function()
  115. maingui.Visible = true
  116. opengui.Visible = false
  117. end)
  118. -- Scripts:
  119.  
  120. print("working")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement