Advertisement
CroClex

awda

Oct 26th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.81 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local dickwad = Instance.new("ScreenGui")
  5. local Base = Instance.new("Frame")
  6. local top = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local exit = Instance.new("TextButton")
  9. local farmbtn = Instance.new("TextButton")
  10. local text = Instance.new("TextLabel")
  11. local coinsbtn = Instance.new("TextButton")
  12. --Properties:
  13. dickwad.Name = "dickwad"
  14. dickwad.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. dickwad.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Base.Name = "Base"
  18. Base.Parent = dickwad
  19. Base.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
  20. Base.BorderSizePixel = 0
  21. Base.Position = UDim2.new(0.192771092, 0, 0.298701227, 0)
  22. Base.Size = UDim2.new(0, 250, 0, 114)
  23.  
  24. top.Name = "top"
  25. top.Parent = Base
  26. top.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  27. top.BorderSizePixel = 0
  28. top.Size = UDim2.new(0, 250, 0, 27)
  29.  
  30. TextLabel.Parent = top
  31. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  32. TextLabel.BackgroundTransparency = 1
  33. TextLabel.Position = UDim2.new(0.100000001, 0, 0, 0)
  34. TextLabel.Size = UDim2.new(0, 200, 0, 27)
  35. TextLabel.Font = Enum.Font.SourceSansBold
  36. TextLabel.Text = "NInja Legends"
  37. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  38. TextLabel.TextScaled = true
  39. TextLabel.TextSize = 14
  40. TextLabel.TextWrapped = true
  41.  
  42. exit.Name = "exit"
  43. exit.Parent = top
  44. exit.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  45. exit.BorderSizePixel = 0
  46. exit.Position = UDim2.new(0.828000009, 0, 0, 0)
  47. exit.Size = UDim2.new(0, 43, 0, 27)
  48. exit.Font = Enum.Font.SourceSansBold
  49. exit.Text = "X"
  50. exit.TextColor3 = Color3.new(1, 1, 1)
  51. exit.TextScaled = true
  52. exit.TextSize = 14
  53. exit.TextWrapped = true
  54.  
  55. farmbtn.Name = "farmbtn"
  56. farmbtn.Parent = Base
  57. farmbtn.BackgroundColor3 = Color3.new(0.345098, 0.345098, 0.345098)
  58. farmbtn.BorderSizePixel = 0
  59. farmbtn.Position = UDim2.new(0.0719999969, 0, 0.421052635, 0)
  60. farmbtn.Size = UDim2.new(0, 96, 0, 33)
  61. farmbtn.Font = Enum.Font.SourceSansBold
  62. farmbtn.Text = "Auto farm"
  63. farmbtn.TextColor3 = Color3.new(1, 1, 1)
  64. farmbtn.TextScaled = true
  65. farmbtn.TextSize = 14
  66. farmbtn.TextWrapped = true
  67.  
  68. text.Name = "text"
  69. text.Parent = Base
  70. text.BackgroundColor3 = Color3.new(1, 1, 1)
  71. text.BackgroundTransparency = 1
  72. text.Position = UDim2.new(0.0280000009, 0, 0.771929801, 0)
  73. text.Size = UDim2.new(0, 70, 0, 26)
  74. text.Font = Enum.Font.SourceSansBold
  75. text.Text = "-- Gui by: nerve"
  76. text.TextColor3 = Color3.new(1, 1, 1)
  77. text.TextSize = 14
  78.  
  79. coinsbtn.Name = "coinsbtn"
  80. coinsbtn.Parent = Base
  81. coinsbtn.BackgroundColor3 = Color3.new(0.345098, 0.345098, 0.345098)
  82. coinsbtn.BorderSizePixel = 0
  83. coinsbtn.Position = UDim2.new(0.54400003, 0, 0.421052635, 0)
  84. coinsbtn.Size = UDim2.new(0, 96, 0, 33)
  85. coinsbtn.Font = Enum.Font.SourceSansBold
  86. coinsbtn.Text = "tp 2 coins"
  87. coinsbtn.TextColor3 = Color3.new(1, 1, 1)
  88. coinsbtn.TextScaled = true
  89. coinsbtn.TextSize = 14
  90. coinsbtn.TextWrapped = true
  91. -- Scripts:
  92.  
  93. Base.Active = true
  94. Base.Draggable = true
  95.  
  96. exit.MouseButton1Click:connect(function()
  97. dickwad:Destroy()
  98. end)
  99.  
  100. farmbtn.MouseButton1Click:connect(function()
  101. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  102. if v.ClassName == "Tool" then
  103. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  104. end
  105. end
  106. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer("swingKatana")
  107. game:GetService("Workspace").sellAreaCircle.circleInner.CFrame = CFrame.new(game.Players.LocalPlayer.Character.PrimaryPart.Position)
  108. end)
  109.  
  110. coinsbtn.MouseButton1Click:connect(function()
  111. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  112. for i,v in pairs(workspace.spawnedCoins.Valley:GetChildren()) do
  113. if v.ClassName == "Part" then
  114. game.Players.LocalPlayer.Character.PrimaryPart.Position = v.Position
  115. end
  116. end
  117. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement