Advertisement
asdadsasd

AFS Gei

Nov 17th, 2019
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.93 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local AnimeFighting = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local AutoFram = Instance.new("TextLabel")
  9. local Strength = Instance.new("TextLabel")
  10. local OFF = Instance.new("TextButton")
  11. local ON = Instance.new("TextButton")
  12. local Chakra = Instance.new("TextLabel")
  13. local OFF_2 = Instance.new("TextButton")
  14. local ON_2 = Instance.new("TextButton")
  15. local Durability = Instance.new("TextLabel")
  16. local OFF_3 = Instance.new("TextButton")
  17. local ON_3 = Instance.new("TextButton")
  18. local Sword = Instance.new("TextLabel")
  19. local OFF_4 = Instance.new("TextButton")
  20. local ON_4 = Instance.new("TextButton")
  21. local TPCreates = Instance.new("TextButton")
  22. local Close = Instance.new("TextButton")
  23. local TextLabel = Instance.new("TextLabel")
  24. local Open = Instance.new("TextButton")
  25.  
  26. --Properties:
  27.  
  28. AnimeFighting.Name = "Anime Fighting"
  29. AnimeFighting.Parent = game.CoreGui
  30. AnimeFighting.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  31.  
  32. Frame.Parent = AnimeFighting
  33. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  34. Frame.BorderColor3 = Color3.new(0, 1, 0)
  35. Frame.BorderSizePixel = 2
  36. Frame.Position = UDim2.new(0.403314918, 0, 0.0485436879, 0)
  37. Frame.Size = UDim2.new(0, 160, 0, 266)
  38. Frame.Visible = false
  39. Frame.Active = true
  40. Frame.Draggable = true
  41.  
  42. AutoFram.Name = "Auto Fram"
  43. AutoFram.Parent = Frame
  44. AutoFram.BackgroundColor3 = Color3.new(0, 0, 0)
  45. AutoFram.BorderColor3 = Color3.new(0, 1, 0)
  46. AutoFram.BorderSizePixel = 2
  47. AutoFram.Size = UDim2.new(0, 160, 0, 27)
  48. AutoFram.Font = Enum.Font.Cartoon
  49. AutoFram.Text = "Auto Fram"
  50. AutoFram.TextColor3 = Color3.new(1, 1, 1)
  51. AutoFram.TextScaled = true
  52. AutoFram.TextSize = 14
  53. AutoFram.TextWrapped = true
  54.  
  55. Strength.Name = "Strength"
  56. Strength.Parent = Frame
  57. Strength.BackgroundColor3 = Color3.new(0, 0, 0)
  58. Strength.BorderColor3 = Color3.new(0, 1, 0)
  59. Strength.BorderSizePixel = 2
  60. Strength.Position = UDim2.new(0, 0, 0.140373498, 0)
  61. Strength.Size = UDim2.new(0, 78, 0, 24)
  62. Strength.Font = Enum.Font.Cartoon
  63. Strength.Text = "Strength"
  64. Strength.TextColor3 = Color3.new(1, 0, 0)
  65. Strength.TextSize = 21
  66. Strength.TextWrapped = true
  67.  
  68. OFF.Name = "OFF"
  69. OFF.Parent = Strength
  70. OFF.BackgroundColor3 = Color3.new(0, 0, 0)
  71. OFF.BorderColor3 = Color3.new(0, 1, 0)
  72. OFF.BorderSizePixel = 2
  73. OFF.Position = UDim2.new(1.57692313, 0, 0, 0)
  74. OFF.Size = UDim2.new(0, 37, 0, 24)
  75. OFF.Font = Enum.Font.Cartoon
  76. OFF.Text = "OFF"
  77. OFF.TextColor3 = Color3.new(1, 0, 0)
  78. OFF.TextScaled = true
  79. OFF.TextSize = 14
  80. OFF.TextWrapped = true
  81. OFF.MouseButton1Down:connect(function()
  82. _G.LULU = false --change to true or false
  83. while _G.LULU do
  84. wait(0.1)
  85. local A_1 = "Stat"
  86. local A_2 = "Strength"-- pick up your item for autofarm
  87. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  88. end
  89. end)
  90.  
  91. ON.Name = "ON"
  92. ON.Parent = Strength
  93. ON.BackgroundColor3 = Color3.new(0, 0, 0)
  94. ON.BorderColor3 = Color3.new(0, 1, 0)
  95. ON.BorderSizePixel = 2
  96. ON.Position = UDim2.new(1.1025641, 0, 0, 0)
  97. ON.Size = UDim2.new(0, 37, 0, 24)
  98. ON.Font = Enum.Font.Cartoon
  99. ON.Text = "ON"
  100. ON.TextColor3 = Color3.new(1, 0, 0)
  101. ON.TextScaled = true
  102. ON.TextSize = 14
  103. ON.TextWrapped = true
  104. ON.MouseButton1Down:connect(function()
  105. _G.LULU = true --change to true or false
  106. while _G.LULU do
  107. wait(0.1)
  108. local A_1 = "Stat"
  109. local A_2 = "Strength"-- pick up your item for autofarm
  110. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  111. end
  112. end)
  113.  
  114. Chakra.Name = "Chakra"
  115. Chakra.Parent = Frame
  116. Chakra.BackgroundColor3 = Color3.new(0, 0, 0)
  117. Chakra.BorderColor3 = Color3.new(0, 1, 0)
  118. Chakra.BorderSizePixel = 2
  119. Chakra.Position = UDim2.new(0, 0, 0.29667595, 0)
  120. Chakra.Size = UDim2.new(0, 78, 0, 24)
  121. Chakra.Font = Enum.Font.Cartoon
  122. Chakra.Text = "Chakra"
  123. Chakra.TextColor3 = Color3.new(1, 0, 0)
  124. Chakra.TextSize = 21
  125. Chakra.TextWrapped = true
  126.  
  127. OFF_2.Name = "OFF"
  128. OFF_2.Parent = Chakra
  129. OFF_2.BackgroundColor3 = Color3.new(0, 0, 0)
  130. OFF_2.BorderColor3 = Color3.new(0, 1, 0)
  131. OFF_2.BorderSizePixel = 2
  132. OFF_2.Position = UDim2.new(1.57692313, 0, 0, 0)
  133. OFF_2.Size = UDim2.new(0, 37, 0, 24)
  134. OFF_2.Font = Enum.Font.Cartoon
  135. OFF_2.Text = "OFF"
  136. OFF_2.TextColor3 = Color3.new(1, 0, 0)
  137. OFF_2.TextScaled = true
  138. OFF_2.TextSize = 14
  139. OFF_2.TextWrapped = true
  140. OFF_2.MouseButton1Down:connect(function()
  141. _G.LULU = false--change to true or false
  142. while _G.LULU do
  143. wait(0.1)
  144. local A_1 = "Stat"
  145. local A_2 = "Chakra"-- pick up your item for autofarm
  146. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  147. end
  148. end)
  149.  
  150. ON_2.Name = "ON"
  151. ON_2.Parent = Chakra
  152. ON_2.BackgroundColor3 = Color3.new(0, 0, 0)
  153. ON_2.BorderColor3 = Color3.new(0, 1, 0)
  154. ON_2.BorderSizePixel = 2
  155. ON_2.Position = UDim2.new(1.1025641, 0, 0, 0)
  156. ON_2.Size = UDim2.new(0, 37, 0, 24)
  157. ON_2.Font = Enum.Font.Cartoon
  158. ON_2.Text = "ON"
  159. ON_2.TextColor3 = Color3.new(1, 0, 0)
  160. ON_2.TextScaled = true
  161. ON_2.TextSize = 14
  162. ON_2.TextWrapped = true
  163. ON_2.MouseButton1Down:connect(function()
  164. _G.LULU = true--change to true or false
  165. while _G.LULU do
  166. wait(0.1)
  167. local A_1 = "Stat"
  168. local A_2 = "Chakra"-- pick up your item for autofarm
  169. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  170. end
  171. end)
  172.  
  173. Durability.Name = "Durability"
  174. Durability.Parent = Frame
  175. Durability.BackgroundColor3 = Color3.new(0, 0, 0)
  176. Durability.BorderColor3 = Color3.new(0, 1, 0)
  177. Durability.BorderSizePixel = 2
  178. Durability.Position = UDim2.new(0, 0, 0.451859683, 0)
  179. Durability.Size = UDim2.new(0, 78, 0, 24)
  180. Durability.Font = Enum.Font.Cartoon
  181. Durability.Text = "Durability"
  182. Durability.TextColor3 = Color3.new(1, 0, 0)
  183. Durability.TextSize = 21
  184. Durability.TextWrapped = true
  185.  
  186. OFF_3.Name = "OFF"
  187. OFF_3.Parent = Durability
  188. OFF_3.BackgroundColor3 = Color3.new(0, 0, 0)
  189. OFF_3.BorderColor3 = Color3.new(0, 1, 0)
  190. OFF_3.BorderSizePixel = 2
  191. OFF_3.Position = UDim2.new(1.57692313, 0, 0, 0)
  192. OFF_3.Size = UDim2.new(0, 37, 0, 24)
  193. OFF_3.Font = Enum.Font.Cartoon
  194. OFF_3.Text = "OFF"
  195. OFF_3.TextColor3 = Color3.new(1, 0, 0)
  196. OFF_3.TextScaled = true
  197. OFF_3.TextSize = 21
  198. OFF_3.TextWrapped = true
  199. OFF_3.MouseButton1Down:connect(function()
  200. _G.LULU = false--change to true or false
  201. while _G.LULU do
  202. wait(0.1)
  203. local A_1 = "Stat"
  204. local A_2 = "Durability"-- pick up your item for autofarm
  205. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  206. end
  207. end)
  208.  
  209. ON_3.Name = "ON"
  210. ON_3.Parent = Durability
  211. ON_3.BackgroundColor3 = Color3.new(0, 0, 0)
  212. ON_3.BorderColor3 = Color3.new(0, 1, 0)
  213. ON_3.BorderSizePixel = 2
  214. ON_3.Position = UDim2.new(1.1025641, 0, 0, 0)
  215. ON_3.Size = UDim2.new(0, 37, 0, 24)
  216. ON_3.Font = Enum.Font.Cartoon
  217. ON_3.Text = "ON"
  218. ON_3.TextColor3 = Color3.new(1, 0, 0)
  219. ON_3.TextScaled = true
  220. ON_3.TextSize = 14
  221. ON_3.TextWrapped = true
  222. ON_3.MouseButton1Down:connect(function()
  223. _G.LULU = true--change to true or false
  224. while _G.LULU do
  225. wait(0.1)
  226. local A_1 = "Stat"
  227. local A_2 = "Durability"-- pick up your item for autofarm
  228. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  229. end
  230. end)
  231.  
  232. Sword.Name = "Sword"
  233. Sword.Parent = Frame
  234. Sword.BackgroundColor3 = Color3.new(0, 0, 0)
  235. Sword.BorderColor3 = Color3.new(0, 1, 0)
  236. Sword.BorderSizePixel = 2
  237. Sword.Position = UDim2.new(0, 0, 0.619547188, 0)
  238. Sword.Size = UDim2.new(0, 78, 0, 24)
  239. Sword.Font = Enum.Font.Cartoon
  240. Sword.Text = "Sword"
  241. Sword.TextColor3 = Color3.new(1, 0, 0)
  242. Sword.TextSize = 21
  243. Sword.TextWrapped = true
  244.  
  245. OFF_4.Name = "OFF"
  246. OFF_4.Parent = Sword
  247. OFF_4.BackgroundColor3 = Color3.new(0, 0, 0)
  248. OFF_4.BorderColor3 = Color3.new(0, 1, 0)
  249. OFF_4.BorderSizePixel = 2
  250. OFF_4.Position = UDim2.new(1.57692313, 0, 0, 0)
  251. OFF_4.Size = UDim2.new(0, 37, 0, 24)
  252. OFF_4.Font = Enum.Font.Cartoon
  253. OFF_4.Text = "OFF"
  254. OFF_4.TextColor3 = Color3.new(1, 0, 0)
  255. OFF_4.TextScaled = true
  256. OFF_4.TextSize = 14
  257. OFF_4.TextWrapped = true
  258. OFF_4.MouseButton1Down:connect(function()
  259. _G.LULU = false--change to true or false
  260. while _G.LULU do
  261. wait(0.1)
  262. local A_1 = "Stat"
  263. local A_2 = "Sword"-- pick up your item for autofarm
  264. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  265. end
  266. end)
  267.  
  268. ON_4.Name = "ON"
  269. ON_4.Parent = Sword
  270. ON_4.BackgroundColor3 = Color3.new(0, 0, 0)
  271. ON_4.BorderColor3 = Color3.new(0, 1, 0)
  272. ON_4.BorderSizePixel = 2
  273. ON_4.Position = UDim2.new(1.1025641, 0, 0, 0)
  274. ON_4.Size = UDim2.new(0, 37, 0, 24)
  275. ON_4.Font = Enum.Font.Cartoon
  276. ON_4.Text = "ON"
  277. ON_4.TextColor3 = Color3.new(1, 0, 0)
  278. ON_4.TextScaled = true
  279. ON_4.TextSize = 14
  280. ON_4.TextWrapped = true
  281. ON_4.MouseButton1Down:connect(function()
  282. _G.LULU = true--change to true or false
  283. while _G.LULU do
  284. wait(0.1)
  285. local A_1 = "Stat"
  286. local A_2 = "Sword"-- pick up your item for autofarm
  287. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  288. end
  289. end)
  290.  
  291. TPCreates.Name = "TP Creates"
  292. TPCreates.Parent = Frame
  293. TPCreates.BackgroundColor3 = Color3.new(0, 0, 0)
  294. TPCreates.BorderColor3 = Color3.new(0, 1, 0)
  295. TPCreates.BorderSizePixel = 2
  296. TPCreates.Position = UDim2.new(0.268750012, 0, 0.751879692, 0)
  297. TPCreates.Size = UDim2.new(0, 74, 0, 42)
  298. TPCreates.Font = Enum.Font.Cartoon
  299. TPCreates.Text = "TP Creates"
  300. TPCreates.TextColor3 = Color3.new(1, 0, 0)
  301. TPCreates.TextScaled = true
  302. TPCreates.TextSize = 16
  303. TPCreates.TextWrapped = true
  304. TPCreates.MouseButton1Down:connect(function()
  305. for i,v in pairs(game.Workspace.MouseIgnore:GetChildren())do
  306. if v.Name == "ChikaraCrate" then
  307. v:MoveTo(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position)
  308. end
  309. end
  310. wait(0.1) do
  311. game.StarterGui:SetCore("SendNotification", {
  312. Title = "Turtle ;)";
  313. Text = "Thanks for my using my script!";
  314. Duration = 0.5;
  315. })
  316. end
  317. end)
  318.  
  319. Close.Name = "Close"
  320. Close.Parent = Frame
  321. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  322. Close.BorderColor3 = Color3.new(0, 1, 0)
  323. Close.BorderSizePixel = 2
  324. Close.Position = UDim2.new(0.868749976, 0, 0, 0)
  325. Close.Size = UDim2.new(0, 21, 0, 21)
  326. Close.Font = Enum.Font.Cartoon
  327. Close.Text = "X"
  328. Close.TextColor3 = Color3.new(0, 0, 0)
  329. Close.TextScaled = true
  330. Close.TextSize = 14
  331. Close.TextWrapped = true
  332. Close.MouseButton1Down:connect(function()
  333. Frame.Visible = false
  334. Open.Visible = true
  335. end)
  336.  
  337. TextLabel.Parent = Frame
  338. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  339. TextLabel.BackgroundTransparency = 1
  340. TextLabel.Position = UDim2.new(0, 0, 0.932330847, 0)
  341. TextLabel.Size = UDim2.new(0, 160, 0, 18)
  342. TextLabel.Font = Enum.Font.Cartoon
  343. TextLabel.Text = "Made By Thuận"
  344. TextLabel.TextColor3 = Color3.new(1, 1, 0)
  345. TextLabel.TextSize = 14
  346. TextLabel.TextWrapped = true
  347.  
  348. Open.Name = "Open"
  349. Open.Parent = AnimeFighting
  350. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  351. Open.BorderColor3 = Color3.new(0, 1, 0)
  352. Open.BorderSizePixel = 3
  353. Open.Position = UDim2.new(0, 0, 0.371359229, 0)
  354. Open.Size = UDim2.new(0, 81, 0, 38)
  355. Open.Font = Enum.Font.Arcade
  356. Open.Text = "AFS Gei"
  357. Open.TextColor3 = Color3.new(1, 0, 0)
  358. Open.TextScaled = true
  359. Open.TextSize = 14
  360. Open.TextWrapped = true
  361. Open.MouseButton1Down:connect(function()
  362. Frame.Visible = true
  363. Open.Visible = false
  364. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement