Advertisement
Scriptorz5

Superhero simulator autofarm coins

Apr 12th, 2019
7,523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Farmcoins = Instance.new("TextLabel")
  7. local ON = Instance.new("TextButton")
  8. local OFF = Instance.new("TextButton")
  9. --Properties:
  10. ScreenGui.Parent = game.CoreGui
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Frame.Position = UDim2.new(0.443537414, 0, 0.428746969, 0)
  16. Frame.Size = UDim2.new(0, 165, 0, 89)
  17. Frame.Style = Enum.FrameStyle.DropShadow
  18. Frame.Active = true
  19. Frame.Draggable = true
  20.  
  21. Farmcoins.Name = "Farm coins"
  22. Farmcoins.Parent = Frame
  23. Farmcoins.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Farmcoins.BackgroundTransparency = 1
  25. Farmcoins.BorderSizePixel = 0
  26. Farmcoins.Position = UDim2.new(0.166222766, 0, 4.83468175e-05, 0)
  27. Farmcoins.Size = UDim2.new(0, 98, 0, 24)
  28. Farmcoins.Font = Enum.Font.SourceSansBold
  29. Farmcoins.Text = "Farm coins"
  30. Farmcoins.TextColor3 = Color3.new(0, 0, 0)
  31. Farmcoins.TextScaled = true
  32. Farmcoins.TextSize = 14
  33. Farmcoins.TextStrokeTransparency = 12
  34. Farmcoins.TextWrapped = true
  35.  
  36. ON.Name = "ON"
  37. ON.Parent = Frame
  38. ON.BackgroundColor3 = Color3.new(1, 1, 1)
  39. ON.BackgroundTransparency = 1
  40. ON.Position = UDim2.new(0.0130000003, 0, 0.409000009, 0)
  41. ON.Size = UDim2.new(0, 71, 0, 39)
  42. ON.AutoButtonColor = false
  43. ON.Font = Enum.Font.SourceSans
  44. ON.Text = "ON"
  45. ON.TextColor3 = Color3.new(0, 0, 0)
  46. ON.TextScaled = true
  47. ON.TextSize = 14
  48. ON.TextStrokeColor3 = Color3.new(0.960784, 0.498039, 0.164706)
  49. ON.TextWrapped = true
  50. ON.MouseButton1Click:connect(function()
  51. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2638.4, 89.2, -227.3)
  52. _G.toggled = true
  53. while _G.toggled == true do
  54. wait(1.3)
  55. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Coins.CashReward.Shine.CFrame
  56. end
  57. end)
  58.  
  59. OFF.Name = "OFF"
  60. OFF.Parent = Frame
  61. OFF.BackgroundColor3 = Color3.new(1, 1, 1)
  62. OFF.BackgroundTransparency = 1
  63. OFF.Position = UDim2.new(0.510266542, 0, 0.409291804, 0)
  64. OFF.Size = UDim2.new(0, 71, 0, 39)
  65. OFF.Font = Enum.Font.SourceSans
  66. OFF.Text = "OFF"
  67. OFF.TextColor3 = Color3.new(0, 0, 0)
  68. OFF.TextScaled = true
  69. OFF.TextSize = 14
  70. OFF.TextWrapped = true
  71. OFF.MouseButton1Click:connect(function()
  72. _G.toggled = false
  73. while _G.toggled == true do
  74. wait(1.3)
  75. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Coins.CashReward.Shine.CFrame
  76. end
  77. end)
  78. game.StarterGui:SetCore("SendNotification",{["Title"]="Coin autofarm",["Text"]="Made by valbofs#7079",["Duration"]=10})
  79. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement