Advertisement
turrtle

pizzaplace

Feb 2nd, 2019
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. print("Anti-AFK Loaded")
  2. print("Paycheck Button Loaded")
  3. print("Work At Pizza Place Autofarm Loaded")
  4. local VirtualUser=game:service'VirtualUser'
  5. game:service'Players'.LocalPlayer.Idled:connect(function()
  6. VirtualUser:CaptureController()
  7. VirtualUser:ClickButton2(Vector2.new())
  8. end)
  9.  
  10. player = game:GetService("Players").LocalPlayer
  11. local ScreenGui = Instance.new("ScreenGui")
  12. local TextButton = Instance.new("TextButton")
  13. --Properties:
  14. ScreenGui.Parent = player:WaitForChild("PlayerGui")
  15.  
  16. TextButton.Parent = ScreenGui
  17. TextButton.BackgroundColor3 = Color3.new(0.435294, 0.662745, 1)
  18. TextButton.Position = UDim2.new(0, 0, 0.715471744, 0)
  19. TextButton.Size = UDim2.new(0, 120, 0, 55)
  20. TextButton.Font = Enum.Font.SourceSans
  21. TextButton.Text = "Paycheck" -- Text
  22. TextButton.TextColor3 = Color3.new(1, 1, 1)
  23. TextButton.TextSize = 25
  24. TextButton.MouseButton1Down:connect(function()
  25. game:GetService("Workspace").Main.GivePaycheck:FireServer("Paycheck") -- Script Goes Here
  26. end)
  27.  
  28. loadstring(game:HttpGet("https://pastebin.com/raw/cEwtwKZR",true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement