Advertisement
trollhackerdude

spam haxx

Jul 5th, 2019
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.87 KB | None | 0 0
  1. -- by trollhackerdude
  2. -- open source for you coding nubs out there
  3. -- Instances:
  4. local autofarmforspamsim = Instance.new("ScreenGui")
  5. local TextButton = Instance.new("TextButton")
  6. local TextLabel = Instance.new("TextLabel")
  7. --Properties:
  8. autofarmforspamsim.Name = "autofarmforspamsim"
  9. autofarmforspamsim.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10.  
  11. TextButton.Parent = autofarmforspamsim
  12. TextButton.BackgroundColor3 = Color3.new(0.709804, 0.709804, 0.709804)
  13. TextButton.Position = UDim2.new(0, 0, 0.450199217, 0)
  14. TextButton.Size = UDim2.new(0, 65, 0, 50)
  15. TextButton.Font = Enum.Font.SourceSans
  16. TextButton.Text = "Toggle Autofarm"
  17. TextButton.TextColor3 = Color3.new(0, 0, 0)
  18. TextButton.TextScaled = true
  19. TextButton.TextSize = 14
  20. TextButton.TextWrapped = true
  21.  
  22. TextLabel.Parent = autofarmforspamsim
  23. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  24. TextLabel.BackgroundTransparency = 1
  25. TextLabel.Position = UDim2.new(0, 0, 0.900398433, 0)
  26. TextLabel.Size = UDim2.new(0, 1067, 0, 50)
  27. TextLabel.Font = Enum.Font.SourceSans
  28. TextLabel.Text = "Spam simulator Autofarm by trollhackerdude"
  29. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  30. TextLabel.TextScaled = true
  31. TextLabel.TextSize = 14
  32. TextLabel.TextWrapped = true
  33. -- Scripts:
  34. function SCRIPT_OGDW79_FAKESCRIPT() -- TextButton.farmscript
  35.     local script = Instance.new('LocalScript')
  36.     script.Parent = TextButton
  37.     local on = false
  38.     script.Parent.MouseButton1Click:Connect(function()
  39.         on = true
  40.     end)
  41.    
  42.     while true do
  43.         wait()
  44.         if on == true then
  45.             local tbl_main =
  46.     {
  47.           0,
  48.           1,
  49.           0,
  50.           0
  51.     }
  52.     game:GetService("ReplicatedStorage").Events.AddSpams:FireServer(unpack(tbl_main))
  53.    
  54.    
  55.     local tbl_main =
  56.     {
  57.           0.5
  58.     }
  59.     game:GetService("ReplicatedStorage").Events.CollectCash:FireServer(unpack(tbl_main))
  60.         end
  61.     end
  62.  
  63. end
  64. coroutine.resume(coroutine.create(SCRIPT_OGDW79_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement