SalatBlitz123

Чемпионы Скорости

Mar 27th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10. local Start = Instance.new("TextButton")
  11. local Stop = Instance.new("TextButton")
  12. local Open = Instance.new("TextButton")
  13. local Close = Instance.new("TextButton")
  14.  
  15. --Properties:
  16.  
  17. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = ScreenGui
  22. Main.BackgroundColor3 = Color3.fromRGB(77, 68, 34)
  23. Main.Position = UDim2.new(0.370068014, 0, 0.270448536, 0)
  24. Main.Size = UDim2.new(0, 191, 0, 317)
  25. Main.Active = true
  26. Main.Draggable = true
  27. Main.Visible = false
  28.  
  29.  
  30. TextLabel.Parent = Main
  31. TextLabel.BackgroundColor3 = Color3.fromRGB(158, 139, 70)
  32. TextLabel.Position = UDim2.new(-0.062827222, 0, 0, 0)
  33. TextLabel.Size = UDim2.new(0, 215, 0, 50)
  34. TextLabel.Font = Enum.Font.SourceSans
  35. TextLabel.Text = "By SalatBlitz"
  36. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  37. TextLabel.TextSize = 14.000
  38.  
  39. TextLabel_2.Parent = Main
  40. TextLabel_2.BackgroundColor3 = Color3.fromRGB(116, 116, 116)
  41. TextLabel_2.Position = UDim2.new(0.157068059, 0, 0.315457404, 0)
  42. TextLabel_2.Size = UDim2.new(0, 132, 0, 21)
  43. TextLabel_2.Font = Enum.Font.SourceSans
  44. TextLabel_2.Text = "Gems AutoFarm"
  45. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. TextLabel_2.TextSize = 14.000
  47.  
  48. Start.Name = "Start"
  49. Start.Parent = Main
  50. Start.BackgroundColor3 = Color3.fromRGB(20, 255, 39)
  51. Start.Position = UDim2.new(0.157068059, 0, 0.473186105, 0)
  52. Start.Size = UDim2.new(0, 132, 0, 33)
  53. Start.Font = Enum.Font.SourceSans
  54. Start.Text = "Start"
  55. Start.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. Start.TextSize = 14.000
  57. Start.MouseButton1Down:connect(function()
  58. Stop.Visible = true
  59. Start.Visible = false
  60. _G.Gems = true
  61. while _G.Gems do
  62. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3591.29688, 109.373421, -2138.67651))--3591.29688, 109.373421, -2138.67651
  63. wait(4)
  64. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3398.99536, 109.4049, -1888.94458))--3398.99536, 109.4049, -1888.94458
  65. wait(1.5)
  66. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3518.5791, 109.4049, -1502.63892))--3518.5791, 109.4049, -1502.63892
  67. wait(1.5)
  68. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3721.80908, 109.410858, -1502.65381))--3721.80908, 109.410858, -1502.65381
  69. wait(1.5)
  70. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3813.93213, 109.410858, -1867.11169))--3813.93213, 109.410858, -1867.11169
  71. wait(1)
  72. end
  73.  
  74. end)
  75.  
  76.  
  77. Stop.Name = "Stop"
  78. Stop.Parent = Main
  79. Stop.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  80. Stop.Position = UDim2.new(0.157068059, 0, 0.473186105, 0)
  81. Stop.Size = UDim2.new(0, 132, 0, 33)
  82. Stop.Visible = false
  83. Stop.Font = Enum.Font.SourceSans
  84. Stop.Text = "Stop"
  85. Stop.TextColor3 = Color3.fromRGB(0, 0, 0)
  86. Stop.TextSize = 14.000
  87. Stop.MouseButton1Down:connect(function()
  88. Start.Visible = true
  89. Stop.Visible = false
  90. _G.Gems = false
  91. while _G.Gems do
  92. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3591.29688, 109.373421, -2138.67651))--3591.29688, 109.373421, -2138.67651
  93. wait(4)
  94. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3398.99536, 109.4049, -1888.94458))--3398.99536, 109.4049, -1888.94458
  95. wait(1.5)
  96. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3518.5791, 109.4049, -1502.63892))--3518.5791, 109.4049, -1502.63892
  97. wait(1.5)
  98. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3721.80908, 109.410858, -1502.65381))--3721.80908, 109.410858, -1502.65381
  99. wait(1.5)
  100. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3813.93213, 109.410858, -1867.11169))--3813.93213, 109.410858, -1867.11169
  101. wait(1)
  102. end
  103. end)
  104.  
  105. Open.Name = "Open"
  106. Open.Parent = ScreenGui
  107. Open.BackgroundColor3 = Color3.fromRGB(159, 159, 159)
  108. Open.Position = UDim2.new(0, 0, 0.468337744, 0)
  109. Open.Size = UDim2.new(0, 99, 0, 33)
  110. Open.Font = Enum.Font.SciFi
  111. Open.Text = "Open"
  112. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  113. Open.TextSize = 14.000
  114. Open.MouseButton1Down:connect(function()
  115. Close.Visible = true
  116. Main.Visible = true
  117. Open.Visible = false
  118. end)
  119.  
  120.  
  121. Close.Name = "Close"
  122. Close.Parent = ScreenGui
  123. Close.BackgroundColor3 = Color3.fromRGB(159, 159, 159)
  124. Close.Position = UDim2.new(0, 0, 0.468337744, 0)
  125. Close.Size = UDim2.new(0, 99, 0, 33)
  126. Close.Font = Enum.Font.SciFi
  127. Close.Text = "Close"
  128. Close.Visible = false
  129. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  130. Close.TextSize = 14.000
  131. Close.MouseButton1Down:connect(function()
  132. Close.Visible = false
  133. Main.Visible = false
  134. Open.Visible = true
  135. end)
Add Comment
Please, Sign In to add comment