TeoMessiKing

HACK credits to TeoMessiKing for making it

Dec 23rd, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local MainGUI = Instance.new("ScreenGui")
  5. local mainframe = Instance.new("Frame")
  6. local status = Instance.new("TextLabel")
  7. local autofarm = Instance.new("TextButton")
  8. local phones = Instance.new("TextButton")
  9. --Properties:
  10. MainGUI.Name = "MainGUI"
  11. MainGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. mainframe.Name = "mainframe"
  14. mainframe.Parent = MainGUI
  15. mainframe.Active = true
  16. mainframe.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  17. mainframe.BackgroundTransparency = 0.10000000149012
  18. mainframe.BorderSizePixel = 3
  19. mainframe.Position = UDim2.new(0, 133, 0, 437)
  20. mainframe.Size = UDim2.new(0, 345, 0, 142)
  21.  
  22. status.Name = "status"
  23. status.Parent = mainframe
  24. status.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  25. status.BorderSizePixel = 3
  26. status.Position = UDim2.new(0.788405836, 0, 0.0843241289, 0)
  27. status.Size = UDim2.new(0, 63, 0, 50)
  28. status.Font = Enum.Font.SourceSans
  29. status.Text = "OFF"
  30. status.TextColor3 = Color3.new(1, 1, 1)
  31. status.TextScaled = true
  32. status.TextSize = 14
  33. status.TextWrapped = true
  34.  
  35. autofarm.Name = "autofarm"
  36. autofarm.Parent = mainframe
  37. autofarm.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  38. autofarm.BorderSizePixel = 3
  39. autofarm.Position = UDim2.new(0, 14, 0, 12)
  40. autofarm.Size = UDim2.new(0, 246, 0, 50)
  41. autofarm.Font = Enum.Font.SourceSans
  42. autofarm.Text = "AUTOFARM"
  43. autofarm.TextColor3 = Color3.new(1, 1, 1)
  44. autofarm.TextScaled = true
  45. autofarm.TextSize = 14
  46. autofarm.TextWrapped = true
  47.  
  48. phones.Name = "phones"
  49. phones.Parent = mainframe
  50. phones.BackgroundColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  51. phones.BorderSizePixel = 3
  52. phones.Position = UDim2.new(0, 13, 0, 76)
  53. phones.Size = UDim2.new(0, 322, 0, 50)
  54. phones.Font = Enum.Font.SourceSans
  55. phones.Text = "Buy All Phones"
  56. phones.TextColor3 = Color3.new(1, 1, 1)
  57. phones.TextScaled = true
  58. phones.TextSize = 14
  59. phones.TextWrapped = true
  60. -- Scripts:
  61.  
  62.  
  63. mainframe.Draggable = true
  64.  
  65. autofarm.MouseButton1Down:connect(function()
  66. if status.Text == 'OFF' then
  67. status.Text = 'ON'
  68. repeat
  69.  
  70.  
  71. local Event = game:GetService("ReplicatedStorage").ToolEvents.CashEvent
  72. Event:FireServer()
  73. wait(0.1)
  74.  
  75. until status.Text == 'OFF'
  76. elseif status.Text == 'ON' then
  77. status.Text = 'OFF'
  78. end
  79. end)
  80.  
  81. phones.MouseButton1Down:connect(function()
  82. local A_1 = 34
  83. local Event = game:GetService("ReplicatedStorage").PhoneShopBuy
  84. Event:FireServer(A_1)
  85.  
  86. end)
Add Comment
Please, Sign In to add comment