Advertisement
CCorrupt

Anime fighting simulator GUI

Feb 21st, 2020
129,194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.88 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local OpenFrame = Instance.new("Frame")
  8. local open = Instance.new("TextButton")
  9. local Main = Instance.new("Frame")
  10. local Pretty1 = Instance.new("Frame")
  11. local Pretty2 = Instance.new("Frame")
  12. local close = Instance.new("TextButton")
  13. local Credits = Instance.new("TextLabel")
  14. local Guiname = Instance.new("TextLabel")
  15. local Strength = Instance.new("TextButton")
  16. local Durability = Instance.new("TextButton")
  17. local Chakra = Instance.new("TextButton")
  18. local Agility = Instance.new("TextButton")
  19. local Speed = Instance.new("TextButton")
  20. local Sword = Instance.new("TextButton")
  21. local Chikara = Instance.new("TextButton")
  22.  
  23. --Properties:
  24.  
  25. ScreenGui.Parent = game.CoreGui
  26.  
  27. OpenFrame.Name = "OpenFrame"
  28. OpenFrame.Parent = ScreenGui
  29. OpenFrame.Active = true
  30. OpenFrame.BackgroundColor3 = Color3.fromRGB(201, 37, 255)
  31. OpenFrame.Position = UDim2.new(0, 0, 0.42140469, 0)
  32. OpenFrame.Size = UDim2.new(0, 90, 0, 41)
  33.  
  34. open.Name = "open"
  35. open.Parent = OpenFrame
  36. open.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  37. open.Position = UDim2.new(0.0777777806, 0, 0.024390243, 0)
  38. open.Size = UDim2.new(0, 74, 0, 38)
  39. open.Font = Enum.Font.Cartoon
  40. open.Text = "Open"
  41. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. open.TextScaled = true
  43. open.TextSize = 14.000
  44. open.TextWrapped = true
  45. open.MouseButton1Down:connect(function()
  46. Main.Visible = true
  47. OpenFrame.Visible = false
  48. end)
  49. Main.Name = "Main"
  50. Main.Parent = ScreenGui
  51. Main.Active = true
  52. Main.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  53. Main.Position = UDim2.new(0.355699271, 0, 0.346153885, 0)
  54. Main.Size = UDim2.new(0, 381, 0, 201)
  55. Main.Draggable = true
  56. Pretty1.Name = "Pretty1"
  57. Pretty1.Parent = Main
  58. Pretty1.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  59. Pretty1.BorderSizePixel = 0
  60. Pretty1.Size = UDim2.new(0, 381, 0, 33)
  61.  
  62. Pretty2.Name = "Pretty2"
  63. Pretty2.Parent = Main
  64. Pretty2.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  65. Pretty2.BorderSizePixel = 0
  66. Pretty2.Position = UDim2.new(0, 0, 0.835820913, 0)
  67. Pretty2.Size = UDim2.new(0, 381, 0, 33)
  68.  
  69. close.Name = "close"
  70. close.Parent = Main
  71. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  72. close.BackgroundTransparency = 1.000
  73. close.BorderSizePixel = 0
  74. close.Position = UDim2.new(0.863517046, 0, 0, 0)
  75. close.Size = UDim2.new(0, 52, 0, 33)
  76. close.Font = Enum.Font.Cartoon
  77. close.Text = "X"
  78. close.TextColor3 = Color3.fromRGB(255, 0, 0)
  79. close.TextScaled = true
  80. close.TextSize = 14.000
  81. close.TextWrapped = true
  82. close.MouseButton1Down:connect(function()
  83. OpenFrame.Visible = true
  84. Main.Visible = false
  85. end)
  86. Credits.Name = "Credits"
  87. Credits.Parent = Main
  88. Credits.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  89. Credits.BackgroundTransparency = 1.000
  90. Credits.BorderSizePixel = 0
  91. Credits.Position = UDim2.new(0, 0, 0.835820913, 0)
  92. Credits.Size = UDim2.new(0, 381, 0, 33)
  93. Credits.Font = Enum.Font.Cartoon
  94. Credits.Text = "Gui made by KdammaH ;) Scripts inspired and created by RDM Script"
  95. Credits.TextColor3 = Color3.fromRGB(255, 255, 255)
  96. Credits.TextScaled = true
  97. Credits.TextSize = 17.000
  98. Credits.TextWrapped = true
  99.  
  100. Guiname.Name = "Gui name"
  101. Guiname.Parent = Main
  102. Guiname.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  103. Guiname.BackgroundTransparency = 1.000
  104. Guiname.Position = UDim2.new(0.236220479, 0, 0, 0)
  105. Guiname.Size = UDim2.new(0, 200, 0, 33)
  106. Guiname.Font = Enum.Font.Cartoon
  107. Guiname.Text = "Anime Fighting Simulator Autofarm"
  108. Guiname.TextColor3 = Color3.fromRGB(255, 255, 255)
  109. Guiname.TextScaled = true
  110. Guiname.TextSize = 14.000
  111. Guiname.TextWrapped = true
  112.  
  113. Strength.Name = "Strength"
  114. Strength.Parent = Main
  115. Strength.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  116. Strength.Position = UDim2.new(0.0314960629, 0, 0.22388044, 0)
  117. Strength.Size = UDim2.new(0, 151, 0, 30)
  118. Strength.Font = Enum.Font.SourceSans
  119. Strength.Text = "Strength"
  120. Strength.TextColor3 = Color3.fromRGB(0, 0, 0)
  121. Strength.TextSize = 20.000
  122. Strength.TextWrapped = true
  123. Strength.MouseButton1Down:connect(function()
  124. _G.LULU = true--change to true or false
  125. while _G.LULU do
  126. wait(0.1)
  127. local A_1 = "Stat"
  128. local A_2 = "Strength"-- pick up your item for autofarm
  129. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  130. end
  131. end)
  132. Durability.Name = "Durability"
  133. Durability.Parent = Main
  134. Durability.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  135. Durability.Position = UDim2.new(0.577427804, 0, 0.22388044, 0)
  136. Durability.Size = UDim2.new(0, 151, 0, 30)
  137. Durability.Font = Enum.Font.SourceSans
  138. Durability.Text = "Durability"
  139. Durability.TextColor3 = Color3.fromRGB(0, 0, 0)
  140. Durability.TextSize = 20.000
  141. Durability.TextWrapped = true
  142. Durability.MouseButton1Down:connect(function()
  143. _G.LULU = true--change to true or false
  144. while _G.LULU do
  145. wait(0.1)
  146. local A_1 = "Stat"
  147. local A_2 = "Durability"-- pick up your item for autofarm
  148. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  149. end
  150. end)
  151. Chakra.Name = "Chakra"
  152. Chakra.Parent = Main
  153. Chakra.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  154. Chakra.Position = UDim2.new(0.031496048, 0, 0.422885478, 0)
  155. Chakra.Size = UDim2.new(0, 151, 0, 30)
  156. Chakra.Font = Enum.Font.SourceSans
  157. Chakra.Text = "Chakra"
  158. Chakra.TextColor3 = Color3.fromRGB(0, 0, 0)
  159. Chakra.TextSize = 20.000
  160. Chakra.TextWrapped = true
  161. Chakra.MouseButton1Down:connect(function()
  162. _G.LULU = true--change to true or false
  163. while _G.LULU do
  164. wait(0.1)
  165. local A_1 = "Stat"
  166. local A_2 = "Chakra"-- pick up your item for autofarm
  167. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  168. end
  169. end)
  170. Agility.Name = "Agility"
  171. Agility.Parent = Main
  172. Agility.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  173. Agility.Position = UDim2.new(0.031496048, 0, 0.631840646, 0)
  174. Agility.Size = UDim2.new(0, 151, 0, 30)
  175. Agility.Font = Enum.Font.SourceSans
  176. Agility.Text = "Agility"
  177. Agility.TextColor3 = Color3.fromRGB(0, 0, 0)
  178. Agility.TextSize = 20.000
  179. Agility.TextWrapped = true
  180. Agility.MouseButton1Down:connect(function()
  181. _G.LULU = true--change to true or false
  182. while _G.LULU do
  183. wait(0.1)
  184. local A_1 = "Stat"
  185. local A_2 = "Agility"-- pick up your item for autofarm
  186. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  187. end
  188. end)
  189. Speed.Name = "Speed"
  190. Speed.Parent = Main
  191. Speed.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  192. Speed.Position = UDim2.new(0.577427804, 0, 0.631840646, 0)
  193. Speed.Size = UDim2.new(0, 151, 0, 30)
  194. Speed.Font = Enum.Font.SourceSans
  195. Speed.Text = "Speed"
  196. Speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  197. Speed.TextSize = 20.000
  198. Speed.TextWrapped = true
  199. Speed.MouseButton1Down:connect(function()
  200. _G.LULU = true--change to true or false
  201. while _G.LULU do
  202. wait(0.1)
  203. local A_1 = "Stat"
  204. local A_2 = "Speed"-- pick up your item for autofarm
  205. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  206. end
  207. end)
  208.  
  209. Sword.Name = "Sword"
  210. Sword.Parent = Main
  211. Sword.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  212. Sword.Position = UDim2.new(0.577427804, 0, 0.427860558, 0)
  213. Sword.Size = UDim2.new(0, 151, 0, 30)
  214. Sword.Font = Enum.Font.SourceSans
  215. Sword.Text = "Sword"
  216. Sword.TextColor3 = Color3.fromRGB(0, 0, 0)
  217. Sword.TextSize = 20.000
  218. Sword.TextWrapped = true
  219. Sword.MouseButton1Down:connect(function()
  220. _G.LULU = true--change to true or false
  221. while _G.LULU do
  222. wait(0.1)
  223. local A_1 = "Stat"
  224. local A_2 = "Sword"-- pick up your item for autofarm
  225. game:GetService("ReplicatedStorage").Events.StatFunction:InvokeServer(A_1, A_2)
  226. end
  227. end)
  228. Chikara.Name = "Chikara"
  229. Chikara.Parent = Main
  230. Chikara.BackgroundColor3 = Color3.fromRGB(124, 10, 255)
  231. Chikara.Size = UDim2.new(0, 71, 0, 33)
  232. Chikara.Font = Enum.Font.SourceSans
  233. Chikara.Text = "Chikara Shard"
  234. Chikara.TextColor3 = Color3.fromRGB(0, 0, 0)
  235. Chikara.TextSize = 14.000
  236. Chikara.TextWrapped = true
  237. Chikara.MouseButton1Down:connect(function()
  238. _G.on = true
  239. while _G.on do
  240. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Workspace.MouseIgnore.ChikaraCrate.ClickBox.CFrame
  241. wait(4)
  242. end
  243. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement