Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.97 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local MainGUI = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local BFG = Instance.new("TextButton")
  8. local Credits = Instance.new("TextLabel")
  9. local Speed = Instance.new("TextButton")
  10. local Bypass = Instance.new("TextButton")
  11. local Soon = Instance.new("TextButton")
  12. local Warning = Instance.new("TextLabel")
  13. local Warning_2 = Instance.new("TextLabel")
  14. local Hover = Instance.new("TextButton")
  15. local Injured = Instance.new("TextButton")
  16. local Ninja = Instance.new("TextButton")
  17. local JumpFlip = Instance.new("TextButton")
  18. local Close = Instance.new("TextButton")
  19. local OpenGUI = Instance.new("Frame")
  20. local Open = Instance.new("TextButton")
  21. local LoginGUI = Instance.new("Frame")
  22. local Title2 = Instance.new("TextLabel")
  23. local Password = Instance.new("TextBox")
  24. local Username = Instance.new("TextBox")
  25. local Submit = Instance.new("TextButton")
  26. --Properties:
  27. ScreenGui.Parent = game.CoreGui
  28.  
  29.  
  30.  
  31. MainGUI.Name = "MainGUI"
  32. MainGUI.Parent = ScreenGui
  33. MainGUI.BackgroundColor3 = Color3.new(0.494118, 0.866667, 1)
  34. MainGUI.Position = UDim2.new(0.0264334343, 0, 0.187543988, 0)
  35. MainGUI.Size = UDim2.new(0, 409, 0, 358)
  36. MainGUI.Visible = false
  37. MainGUI.Active = true
  38. MainGUI.Draggable = true
  39.  
  40. Title.Name = "Title"
  41. Title.Parent = MainGUI
  42. Title.BackgroundColor3 = Color3.new(0.635294, 1, 0.890196)
  43. Title.BorderColor3 = Color3.new(0, 0, 0)
  44. Title.Size = UDim2.new(0, 409, 0, 50)
  45. Title.Font = Enum.Font.Gotham
  46. Title.Text = "Inferno v1"
  47. Title.TextColor3 = Color3.new(0, 0, 0)
  48. Title.TextSize = 40
  49.  
  50. BFG.Name = "BFG"
  51. BFG.Parent = MainGUI
  52. BFG.BackgroundColor3 = Color3.new(1, 1, 1)
  53. BFG.Position = UDim2.new(0.0331790149, 0, 0.167241961, 0)
  54. BFG.Size = UDim2.new(0, 85, 0, 37)
  55. BFG.Font = Enum.Font.SourceSans
  56. BFG.Text = "BFG"
  57. BFG.TextColor3 = Color3.new(0, 0, 0)
  58. BFG.TextScaled = true
  59. BFG.TextSize = 14
  60. BFG.TextWrapped = true
  61.  
  62. Credits.Name = "Credits"
  63. Credits.Parent = MainGUI
  64. Credits.BackgroundColor3 = Color3.new(0.635294, 1, 0.890196)
  65. Credits.Position = UDim2.new(0.239608809, 0, 0.930048943, 0)
  66. Credits.Size = UDim2.new(0, 200, 0, 25)
  67. Credits.Font = Enum.Font.SourceSans
  68. Credits.Text = "Credits to Waffleszx"
  69. Credits.TextColor3 = Color3.new(0, 0, 0)
  70. Credits.TextSize = 14
  71.  
  72. Speed.Name = "Speed"
  73. Speed.Parent = MainGUI
  74. Speed.BackgroundColor3 = Color3.new(1, 1, 1)
  75. Speed.Position = UDim2.new(0.645476818, 0, 0.421431899, 0)
  76. Speed.Size = UDim2.new(0, 85, 0, 37)
  77. Speed.Font = Enum.Font.SourceSans
  78. Speed.Text = "Speed 50"
  79. Speed.TextColor3 = Color3.new(0, 0, 0)
  80. Speed.TextScaled = true
  81. Speed.TextSize = 14
  82. Speed.TextWrapped = true
  83. Speed.MouseButton1Click:connect(function()
  84. repeat wait() until game.Players.LocalPlayer
  85. m = game.Players.LocalPlayer:GetMouse()
  86. m.KeyDown:connect(function(key)
  87. if key == "0" then
  88. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  89. end
  90. end)
  91. m.KeyUp:connect(function(key)
  92. if key == "0" then
  93. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  94. end
  95. end)
  96. end)
  97.  
  98. Bypass.Name = "Bypass"
  99. Bypass.Parent = MainGUI
  100. Bypass.BackgroundColor3 = Color3.new(1, 1, 1)
  101. Bypass.Position = UDim2.new(0.0537897423, 0, 0.421431899, 0)
  102. Bypass.Size = UDim2.new(0, 85, 0, 37)
  103. Bypass.Font = Enum.Font.SourceSans
  104. Bypass.Text = "Bypass"
  105. Bypass.TextColor3 = Color3.new(0, 0, 0)
  106. Bypass.TextScaled = true
  107. Bypass.TextSize = 14
  108. Bypass.TextWrapped = true
  109. Bypass.MouseButton1Click:connect(function()
  110. while true do
  111. game.ReplicatedStorage.Name = 'RepStorage'
  112. wait(0.5)
  113. end
  114. end)
  115.  
  116. Soon.Name = "Soon"
  117. Soon.Parent = MainGUI
  118. Soon.BackgroundColor3 = Color3.new(1, 1, 1)
  119. Soon.Position = UDim2.new(0.356968224, 0, 0.421431899, 0)
  120. Soon.Size = UDim2.new(0, 85, 0, 37)
  121. Soon.Font = Enum.Font.SourceSans
  122. Soon.Text = "ComingSoon"
  123. Soon.TextColor3 = Color3.new(0, 0, 0)
  124. Soon.TextScaled = true
  125. Soon.TextSize = 14
  126. Soon.TextWrapped = true
  127.  
  128. Warning.Name = "Warning"
  129. Warning.Parent = MainGUI
  130. Warning.BackgroundColor3 = Color3.new(1, 1, 1)
  131. Warning.BackgroundTransparency = 1
  132. Warning.Position = UDim2.new(0.0537897311, 0, 0.324022353, 0)
  133. Warning.Size = UDim2.new(0, 326, 0, 34)
  134. Warning.Font = Enum.Font.SourceSans
  135. Warning.Text = "Click on Bypass then you can use Speed!"
  136. Warning.TextColor3 = Color3.new(0, 0, 0)
  137. Warning.TextScaled = true
  138. Warning.TextSize = 14
  139. Warning.TextWrapped = true
  140.  
  141. Warning_2.Name = "Warning"
  142. Warning_2.Parent = MainGUI
  143. Warning_2.BackgroundColor3 = Color3.new(1, 1, 1)
  144. Warning_2.BackgroundTransparency = 1
  145. Warning_2.Position = UDim2.new(0.0537897311, 0, 0.572625697, 0)
  146. Warning_2.Size = UDim2.new(0, 326, 0, 34)
  147. Warning_2.Font = Enum.Font.SourceSans
  148. Warning_2.Text = "Animations"
  149. Warning_2.TextColor3 = Color3.new(0, 0, 0)
  150. Warning_2.TextScaled = true
  151. Warning_2.TextSize = 14
  152. Warning_2.TextWrapped = true
  153.  
  154. Hover.Name = "Hover"
  155. Hover.Parent = MainGUI
  156. Hover.BackgroundColor3 = Color3.new(1, 1, 1)
  157. Hover.Position = UDim2.new(0.0513447598, 0, 0.684001744, 0)
  158. Hover.Size = UDim2.new(0, 85, 0, 37)
  159. Hover.Font = Enum.Font.SourceSans
  160. Hover.Text = "Hover"
  161. Hover.TextColor3 = Color3.new(0, 0, 0)
  162. Hover.TextScaled = true
  163. Hover.TextSize = 14
  164. Hover.TextWrapped = true
  165.  
  166. Injured.Name = "Injured"
  167. Injured.Parent = MainGUI
  168. Injured.BackgroundColor3 = Color3.new(1, 1, 1)
  169. Injured.Position = UDim2.new(0.520782351, 0, 0.681208432, 0)
  170. Injured.Size = UDim2.new(0, 85, 0, 37)
  171. Injured.Font = Enum.Font.SourceSans
  172. Injured.Text = "Injured"
  173. Injured.TextColor3 = Color3.new(0, 0, 0)
  174. Injured.TextScaled = true
  175. Injured.TextSize = 14
  176. Injured.TextWrapped = true
  177. Injured.MouseButton1Click:connect(function()
  178. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  179. v.AnimationId = 'rbxassetid://163743477'
  180. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.idle:GetChildren()) do
  181. v.AnimationId = 'rbxassetid://163723766'
  182. end
  183. end
  184. end)
  185.  
  186. Ninja.Name = "Ninja"
  187. Ninja.Parent = MainGUI
  188. Ninja.BackgroundColor3 = Color3.new(1, 1, 1)
  189. Ninja.Position = UDim2.new(0.286063582, 0, 0.684001744, 0)
  190. Ninja.Size = UDim2.new(0, 85, 0, 37)
  191. Ninja.Font = Enum.Font.SourceSans
  192. Ninja.Text = "Ninja"
  193. Ninja.TextColor3 = Color3.new(0, 0, 0)
  194. Ninja.TextScaled = true
  195. Ninja.TextSize = 14
  196. Ninja.TextWrapped = true
  197. Ninja.MouseButton1Click:connect(function()
  198. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId="rbxassetid://229771484"
  199. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
  200. v.AnimationId = 'rbxassetid://229782914'
  201. for _,v in pairs(game.Players.LocalPlayer.Character.Animate.idle:GetChildren()) do
  202. v.AnimationId = 'rbxassetid://255771113'
  203. end
  204. end
  205. end)
  206.  
  207. JumpFlip.Name = "JumpFlip"
  208. JumpFlip.Parent = MainGUI
  209. JumpFlip.BackgroundColor3 = Color3.new(1, 1, 1)
  210. JumpFlip.Position = UDim2.new(0.753056228, 0, 0.681208432, 0)
  211. JumpFlip.Size = UDim2.new(0, 85, 0, 37)
  212. JumpFlip.Font = Enum.Font.SourceSans
  213. JumpFlip.Text = "JumpFlip"
  214. JumpFlip.TextColor3 = Color3.new(0, 0, 0)
  215. JumpFlip.TextScaled = true
  216. JumpFlip.TextSize = 14
  217. JumpFlip.TextWrapped = true
  218.  
  219.  
  220. Close.Name = "Close"
  221. Close.Parent = MainGUI
  222. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  223. Close.Position = UDim2.new(0.87286061, 0, 0.119755924, 0)
  224. Close.Size = UDim2.new(0, 52, 0, 36)
  225. Close.Font = Enum.Font.SourceSans
  226. Close.Text = "X"
  227. Close.TextColor3 = Color3.new(0, 0, 0)
  228. Close.TextScaled = true
  229. Close.TextSize = 14
  230. Close.TextWrapped = true
  231. Close.MouseButton1Click:connect(function()
  232. MainGUI.Visible = false
  233. OpenGUI.Visible = true
  234. end)
  235.  
  236. OpenGUI.Name = "OpenGUI"
  237. OpenGUI.Parent = ScreenGui
  238. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  239. OpenGUI.Position = UDim2.new(0.922839522, 0, 0.530813217, 0)
  240. OpenGUI.Size = UDim2.new(0, 100, 0, 58)
  241. OpenGUI.Visible = false
  242.  
  243. Open.Name = "Open"
  244. Open.Parent = OpenGUI
  245. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  246. Open.Size = UDim2.new(0, 111, 0, 57)
  247. Open.Font = Enum.Font.SourceSans
  248. Open.Text = "Open"
  249. Open.TextColor3 = Color3.new(0, 0, 0)
  250. Open.TextScaled = true
  251. Open.TextSize = 14
  252. Open.TextWrapped = true
  253. Open.MouseButton1Click:connect(function()
  254. MainGUI.Visible = true
  255. OpenGUI.Visible = false
  256. end)
  257.  
  258. LoginGUI.Name = "LoginGUI"
  259. LoginGUI.Parent = ScreenGui
  260. LoginGUI.BackgroundColor3 = Color3.new(0.54902, 0.54902, 0.54902)
  261. LoginGUI.Position = UDim2.new(0.461479187, 0, 0.313323587, 0)
  262. LoginGUI.Size = UDim2.new(0, 243, 0, 304)
  263. LoginGUI.Draggable = true
  264.  
  265. Title2.Name = "Title2"
  266. Title2.Parent = LoginGUI
  267. Title2.BackgroundColor3 = Color3.new(1, 1, 1)
  268. Title2.Position = UDim2.new(-0.00354138017, 0, -0.00246587396, 0)
  269. Title2.Size = UDim2.new(0, 243, 0, 50)
  270. Title2.Font = Enum.Font.SourceSans
  271. Title2.Text = "Login System"
  272. Title2.TextColor3 = Color3.new(0, 0, 0)
  273. Title2.TextScaled = true
  274. Title2.TextSize = 14
  275. Title2.TextWrapped = true
  276.  
  277. Password.Name = "Password"
  278. Password.Parent = LoginGUI
  279. Password.BackgroundColor3 = Color3.new(1, 1, 1)
  280. Password.Position = UDim2.new(0.0823045298, 0, 0.470394731, 0)
  281. Password.Size = UDim2.new(0, 200, 0, 50)
  282. Password.Font = Enum.Font.SourceSans
  283. Password.Text = "Password"
  284. Password.TextColor3 = Color3.new(0, 0, 0)
  285. Password.TextScaled = true
  286. Password.TextSize = 14
  287. Password.TextWrapped = true
  288.  
  289.  
  290. Username.Name = "Username"
  291. Username.Parent = LoginGUI
  292. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  293. Username.Position = UDim2.new(0.0823045298, 0, 0.213815793, 0)
  294. Username.Size = UDim2.new(0, 200, 0, 50)
  295. Username.Font = Enum.Font.SourceSans
  296. Username.Text = "Username"
  297. Username.TextColor3 = Color3.new(0, 0, 0)
  298. Username.TextScaled = true
  299. Username.TextSize = 14
  300. Username.TextWrapped = true
  301.  
  302. Submit.Name = "Submit"
  303. Submit.Parent = LoginGUI
  304. Submit.BackgroundColor3 = Color3.new(1, 1, 1)
  305. Submit.Position = UDim2.new(0.0864197537, 0, 0.707236826, 0)
  306. Submit.Size = UDim2.new(0, 200, 0, 50)
  307. Submit.Font = Enum.Font.SourceSans
  308. Submit.Text = "Submit"
  309. Submit.TextColor3 = Color3.new(0, 0, 0)
  310. Submit.TextScaled = true
  311. Submit.TextSize = 14
  312. Submit.TextWrapped = true
  313. Submit.MouseButton1Click:connect(function()
  314. if Username.Text == "Muaha" and Password.Text == "Gay1" then
  315. LoginGUI.Visible = false
  316. OpenGUI.Visible = true
  317. end
  318. end)
  319. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement