Advertisement
LukeMotionz

RIBAuto

Apr 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local AutoCashFarm = Instance.new("Frame")
  5. local ACFFrame = Instance.new("Frame")
  6. local ACFTitle = Instance.new("TextLabel")
  7. local RBTitleACF = Instance.new("TextLabel")
  8. local Start = Instance.new("TextButton")
  9. local Stop = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. AutoCashFarm.Name = "Auto-Cash Farm"
  16. AutoCashFarm.Parent = ScreenGui
  17. AutoCashFarm.Active = true
  18. AutoCashFarm.Draggable = true
  19. AutoCashFarm.BackgroundColor3 = Color3.new(0.2, 0.560784, 1)
  20. AutoCashFarm.BorderSizePixel = 6
  21. AutoCashFarm.Position = UDim2.new(4.3772161e-08, 0, 0.47208932, 0)
  22. AutoCashFarm.Size = UDim2.new(0, 227, 0, 35)
  23.  
  24. ACFFrame.Name = "ACFFrame"
  25. ACFFrame.Parent = AutoCashFarm
  26. ACFFrame.BackgroundColor3 = Color3.new(0.423529, 0.721569, 1)
  27. ACFFrame.BorderSizePixel = 5
  28. ACFFrame.Position = UDim2.new(0, 0, 1.15909088, 0)
  29. ACFFrame.Size = UDim2.new(0, 226, 0, 178)
  30.  
  31. ACFTitle.Name = "ACFTitle"
  32. ACFTitle.Parent = AutoCashFarm
  33. ACFTitle.BackgroundColor3 = Color3.new(0.423529, 0.721569, 1)
  34. ACFTitle.BorderSizePixel = 2
  35. ACFTitle.Position = UDim2.new(0.171806172, 0, 1.15909088, 0)
  36. ACFTitle.Size = UDim2.new(0, 150, 0, 34)
  37. ACFTitle.Font = Enum.Font.Arcade
  38. ACFTitle.Text = "Auto-Cash Farm"
  39. ACFTitle.TextScaled = true
  40. ACFTitle.TextSize = 14
  41. ACFTitle.TextWrapped = true
  42.  
  43. RBTitleACF.Name = "RBTitleACF"
  44. RBTitleACF.Parent = AutoCashFarm
  45. RBTitleACF.BackgroundColor3 = Color3.new(0.2, 0.560784, 1)
  46. RBTitleACF.BorderSizePixel = 2
  47. RBTitleACF.Position = UDim2.new(0.171806172, 0, 0, 0)
  48. RBTitleACF.Size = UDim2.new(0, 150, 0, 35)
  49. RBTitleACF.Font = Enum.Font.Arcade
  50. RBTitleACF.Text = "LuaExploit_z"
  51. RBTitleACF.TextScaled = true
  52. RBTitleACF.TextSize = 14
  53. RBTitleACF.TextWrapped = true
  54.  
  55. Start.Name = "Start"
  56. Start.Parent = AutoCashFarm
  57. Start.BackgroundColor3 = Color3.new(1, 1, 1)
  58. Start.BorderSizePixel = 4
  59. Start.Position = UDim2.new(0.0572687536, 0, 2.20000005, 0)
  60. Start.Size = UDim2.new(0, 200, 0, 50)
  61. Start.Font = Enum.Font.Arcade
  62. Start.Text = "Start"
  63. Start.TextScaled = true
  64. Start.TextSize = 14
  65. Start.TextWrapped = true
  66.  
  67. Stop.Name = "Stop"
  68. Stop.Parent = AutoCashFarm
  69. Stop.BackgroundColor3 = Color3.new(1, 1, 1)
  70. Stop.BorderSizePixel = 4
  71. Stop.Position = UDim2.new(0.0572686195, 0, 4.39999962, 0)
  72. Stop.Size = UDim2.new(0, 200, 0, 50)
  73. Stop.Font = Enum.Font.Arcade
  74. Stop.Text = "Stop"
  75. Stop.TextScaled = true
  76. Stop.TextSize = 14
  77. Stop.TextWrapped = true
  78.  
  79. -- Scripts --
  80.  
  81. Start.MouseButton1Click:Connect(function()
  82. local fuck = false
  83. spawn(function()
  84. while fuck == false do
  85. print("WOOHOO! WORK!!")
  86. wait(0.6)
  87. end
  88. end)
  89. end)
  90.  
  91.  
  92. Stop.MouseButton1Click:Connect(function()
  93. wait(1)
  94. local fuck = true
  95. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement