Advertisement
IDKDONTCALLMEOOF

Anime Fighting Simulator Script

Apr 22nd, 2020
672
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.60 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local A = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local TextButton = Instance.new("TextButton")
  9. local TextButton_2 = Instance.new("TextButton")
  10. local TextButton_3 = Instance.new("TextButton")
  11. local TextButton_4 = Instance.new("TextButton")
  12. local TextButton_5 = Instance.new("TextButton")
  13. --Properties:
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. Main.Name = "Main"
  17. Main.Parent = ScreenGui
  18. Main.Active = true
  19. Main.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  20. Main.BorderColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  21. Main.Position = UDim2.new(0.273722619, 0, 0.249003977, 0)
  22. Main.Size = UDim2.new(0, 172, 0, 266)
  23. Main.Draggable = true
  24.  
  25. A.Name = "A"
  26. A.Parent = Main
  27. A.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  28. A.BorderColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  29. A.Size = UDim2.new(0, 172, 0, 27)
  30.  
  31. TextLabel.Parent = A
  32. TextLabel.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  33. TextLabel.BorderColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  34. TextLabel.Size = UDim2.new(0, 172, 0, 27)
  35. TextLabel.Font = Enum.Font.Cartoon
  36. TextLabel.Text = "GUI Made By Ex Ryuuz"
  37. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  38. TextLabel.TextScaled = true
  39. TextLabel.TextSize = 14
  40. TextLabel.TextWrapped = true
  41.  
  42. TextButton.Parent = Main
  43. TextButton.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  44. TextButton.Position = UDim2.new(0.122093022, 0, 0.13526386, 0)
  45. TextButton.Size = UDim2.new(0, 130, 0, 31)
  46. TextButton.Font = Enum.Font.Cartoon
  47. TextButton.Text = "Strength"
  48. TextButton.TextColor3 = Color3.new(1, 1, 1)
  49. TextButton.TextSize = 18
  50. TextButton.TextWrapped = true
  51. TextButton.MouseButton1Down:connect(function()
  52. --AutoFarm Strength
  53. _G.LULU = true--change to true or false
  54. while _G.LULU do
  55. wait(0.1)
  56. local A_1 = "Stat"
  57. local A_2 = "Strength"-- pick up your item for autofarm
  58. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  59. end
  60. end)
  61.  
  62. TextButton_2.Parent = Main
  63. TextButton_2.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  64. TextButton_2.Position = UDim2.new(0.122093022, 0, 0.295177788, 0)
  65. TextButton_2.Size = UDim2.new(0, 130, 0, 31)
  66. TextButton_2.Font = Enum.Font.Cartoon
  67. TextButton_2.Text = "Durability"
  68. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  69. TextButton_2.TextSize = 18
  70. TextButton_2.TextWrapped = true
  71. TextButton_2.MouseButton1Down:connect(function()
  72. --AutoFarm Durability
  73. _G.LULU = true--change to true or false
  74. while _G.LULU do
  75. wait(0.1)
  76. local A_1 = "Stat"
  77. local A_2 = "Durability"-- pick up your item for autofarm
  78. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  79. end
  80. end)
  81.  
  82. TextButton_3.Parent = Main
  83. TextButton_3.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  84. TextButton_3.Position = UDim2.new(0.122093022, 0, 0.470355123, 0)
  85. TextButton_3.Size = UDim2.new(0, 130, 0, 31)
  86. TextButton_3.Font = Enum.Font.Cartoon
  87. TextButton_3.Text = "Chakra"
  88. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  89. TextButton_3.TextSize = 18
  90. TextButton_3.TextWrapped = true
  91. TextButton_3.MouseButton1Down:connect(function()
  92. --AutoFarm Chakra
  93. _G.LULU = true--change to true or false
  94. while _G.LULU do
  95. wait(0.1)
  96. local A_1 = "Stat"
  97. local A_2 = "Chakra"-- pick up your item for autofarm
  98. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  99. end
  100. end)
  101.  
  102. TextButton_4.Parent = Main
  103. TextButton_4.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  104. TextButton_4.Position = UDim2.new(0.119207337, 0, 0.845969319, 0)
  105. TextButton_4.Size = UDim2.new(0, 130, 0, 31)
  106. TextButton_4.Font = Enum.Font.Cartoon
  107. TextButton_4.Text = "Close"
  108. TextButton_4.TextColor3 = Color3.new(1, 1, 1)
  109. TextButton_4.TextSize = 18
  110. TextButton_4.TextWrapped = true
  111. TextButton_4.MouseButton1Down:connect(function()
  112. Main.Visible = false
  113. end)
  114.  
  115. TextButton_5.Parent = Main
  116. TextButton_5.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
  117. TextButton_5.Position = UDim2.new(0.119207263, 0, 0.630296588, 0)
  118. TextButton_5.Size = UDim2.new(0, 130, 0, 31)
  119. TextButton_5.Font = Enum.Font.Cartoon
  120. TextButton_5.Text = "Sword"
  121. TextButton_5.TextColor3 = Color3.new(1, 1, 1)
  122. TextButton_5.TextSize = 18
  123. TextButton_5.TextWrapped = true
  124. TextButton_5.MouseButton1Down:connect(function()
  125. --AutoFarm Sword
  126. _G.LULU = true--change to true or false
  127. while _G.LULU do
  128. wait(0.1)
  129. local A_1 = "Stat"
  130. local A_2 = "Sword"-- pick up your item for autofarm
  131. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  132. end
  133. end)
  134. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement