Advertisement
Mistershield

Car Driving Indonesia Auto Farm

Mar 12th, 2023 (edited)
2,188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local UICorner = Instance.new("UICorner")
  9. local UIGradient = Instance.new("UIGradient")
  10. local TextLabel = Instance.new("TextLabel")
  11. local UICorner_2 = Instance.new("UICorner")
  12. local TextButton = Instance.new("TextButton")
  13. local UICorner_3 = Instance.new("UICorner")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. Frame.BackgroundTransparency = 0.550
  24. Frame.Position = UDim2.new(0.0329972506, 0, 0.396508723, 0)
  25. Frame.Size = UDim2.new(0, 200, 0, 200)
  26.  
  27. UICorner.CornerRadius = UDim.new(0, 20)
  28. UICorner.Parent = Frame
  29.  
  30. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(0.41, Color3.fromRGB(33, 33, 33)), ColorSequenceKeypoint.new(0.61, Color3.fromRGB(0, 0, 0)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(0, 0, 0))}
  31. UIGradient.Rotation = 270
  32. UIGradient.Parent = Frame
  33.  
  34. TextLabel.Parent = Frame
  35. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  37. TextLabel.Font = Enum.Font.FredokaOne
  38. TextLabel.Text = "Auto Farm CDID"
  39. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  40. TextLabel.TextScaled = true
  41. TextLabel.TextSize = 14.000
  42. TextLabel.TextWrapped = true
  43.  
  44. UICorner_2.CornerRadius = UDim.new(0, 20)
  45. UICorner_2.Parent = TextLabel
  46.  
  47. TextButton.Parent = Frame
  48. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  49. TextButton.Position = UDim2.new(0, 0, 0.435000002, 0)
  50. TextButton.Size = UDim2.new(0, 200, 0, 50)
  51. TextButton.Font = Enum.Font.FredokaOne
  52. TextButton.Text = "Start"
  53. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. TextButton.TextScaled = true
  55. TextButton.TextSize = 14.000
  56. TextButton.TextWrapped = true
  57. TextButton.MouseButton1Click:Connect(function()
  58. local args = {
  59. [1] = "JanjiJiwa"
  60. }
  61.  
  62. game:GetService("ReplicatedStorage"):WaitForChild("NetworkContainer"):WaitForChild("RemoteEvents"):WaitForChild("Job"):FireServer(unpack(args))
  63.  
  64. while wait() do
  65. local args = {
  66. [1] = "GetCoffee"
  67. }
  68.  
  69. game:GetService("ReplicatedStorage"):WaitForChild("NetworkContainer"):WaitForChild("RemoteEvents"):WaitForChild("JanjiJiwa"):FireServer(unpack(args))
  70. wait(16)
  71. local args = {
  72. [1] = "Delivery"
  73. }
  74.  
  75. game:GetService("ReplicatedStorage"):WaitForChild("NetworkContainer"):WaitForChild("RemoteEvents"):WaitForChild("JanjiJiwa"):FireServer(unpack(args))
  76.  
  77. end
  78. end)
  79.  
  80. UICorner_3.CornerRadius = UDim.new(0, 20)
  81. UICorner_3.Parent = TextButton
  82.  
  83. TextLabel_2.Parent = Frame
  84. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  85. TextLabel_2.BackgroundTransparency = 1.000
  86. TextLabel_2.Position = UDim2.new(0, 0, 0.685000002, 0)
  87. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  88. TextLabel_2.Font = Enum.Font.FredokaOne
  89. TextLabel_2.Text = " "
  90. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  91. TextLabel_2.TextSize = 14.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement