ScriptingFluff

[ROBLOX]AtariWow v3

Feb 9th, 2020
1,540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.47 KB | None | 0 0
  1. -- Made by AtariWow
  2. -- Discord Koreans#9057
  3. local AtariWow = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Title = Instance.new("TextLabel")
  6. local KillTitle = Instance.new("TextLabel")
  7. local KillText = Instance.new("TextBox")
  8. local KillButton = Instance.new("TextButton")
  9. local Noclip = Instance.new("TextButton")
  10. local Fly = Instance.new("TextButton")
  11. local InvisFling = Instance.new("TextButton")
  12. local InfJump = Instance.new("TextButton")
  13. local ClickTP = Instance.new("TextButton")
  14. local ClickDelete = Instance.new("TextButton")
  15. local RevisAdmin = Instance.new("TextButton")
  16. local DarkDex = Instance.new("TextButton")
  17. local WalkSpeedText = Instance.new("TextBox")
  18. local JumpText = Instance.new("TextBox")
  19. local SetSpeed = Instance.new("TextButton")
  20. local SetJump = Instance.new("TextButton")
  21. local PlayerTitle = Instance.new("TextLabel")
  22. local FEGodmode = Instance.new("TextButton")
  23. local FPSGUI = Instance.new("TextButton")
  24. local Close = Instance.new("TextButton")
  25. local Open = Instance.new("TextButton")
  26.  
  27. --Properties:
  28.  
  29. AtariWow.Name = "AtariWow"
  30. AtariWow.Parent = game.CoreGui
  31.  
  32. Main.Name = "Main"
  33. Main.Parent = AtariWow
  34. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  35. Main.BorderSizePixel = 2
  36. Main.Position = UDim2.new(0.584207237, 0, 0.109336615, 0)
  37. Main.Size = UDim2.new(0, 200, 0, 400)
  38. Main.Style = Enum.FrameStyle.RobloxSquare
  39.  
  40. Title.Name = "Title"
  41. Title.Parent = Main
  42. Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  43. Title.BorderColor3 = Color3.fromRGB(27, 42, 53)
  44. Title.BorderSizePixel = 0
  45. Title.Position = UDim2.new(-0.0449999981, 0, -0.0221987125, 0)
  46. Title.Size = UDim2.new(0, 200, 0, 20)
  47. Title.Font = Enum.Font.SciFi
  48. Title.Text = "AtawiWow V3"
  49. Title.TextColor3 = Color3.fromRGB(255, 0, 0)
  50. Title.TextSize = 14.000
  51.  
  52. KillTitle.Name = "Kill Title"
  53. KillTitle.Parent = Main
  54. KillTitle.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  55. KillTitle.BorderSizePixel = 0
  56. KillTitle.Position = UDim2.new(-0.0449999981, 0, 0.704999983, 0)
  57. KillTitle.Size = UDim2.new(0, 200, 0, 20)
  58. KillTitle.Font = Enum.Font.SciFi
  59. KillTitle.Text = "FE Kill"
  60. KillTitle.TextColor3 = Color3.fromRGB(255, 0, 0)
  61. KillTitle.TextSize = 14.000
  62.  
  63. KillText.Name = "Kill Text"
  64. KillText.Parent = Main
  65. KillText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  66. KillText.BackgroundTransparency = 0.500
  67. KillText.BorderColor3 = Color3.fromRGB(0, 0, 0)
  68. KillText.BorderSizePixel = 2
  69. KillText.Position = UDim2.new(0.0899999961, 0, 0.797499955, 0)
  70. KillText.Size = UDim2.new(0, 150, 0, 20)
  71. KillText.Font = Enum.Font.SciFi
  72. KillText.PlaceholderColor3 = Color3.fromRGB(100, 100, 100)
  73. KillText.PlaceholderText = "Name"
  74. KillText.Text = ""
  75. KillText.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. KillText.TextSize = 14.000
  77.  
  78. KillButton.Name = "Kill Button"
  79. KillButton.Parent = Main
  80. KillButton.BackgroundColor3 = Color3.fromRGB(115, 115, 115)
  81. KillButton.Position = UDim2.new(0.224207327, 0, 0.888255537, 0)
  82. KillButton.Size = UDim2.new(0, 100, 0, 30)
  83. KillButton.Style = Enum.ButtonStyle.RobloxRoundButton
  84. KillButton.Font = Enum.Font.SciFi
  85. KillButton.Text = "Kill"
  86. KillButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  87. KillButton.TextSize = 14.000
  88. local Players = game:GetService("Players")
  89. local LocalPlayer = Players.LocalPlayer
  90. local function RemoveSpaces(String)
  91. return String:gsub("%s+", "") or String
  92. end
  93.  
  94. local function FindPlayer(String)
  95. String = RemoveSpaces(String)
  96. for _, _Player in pairs(Players:GetPlayers()) do
  97. if _Player.Name:lower():match('^'.. String:lower()) then
  98. return _Player
  99. end
  100. end
  101. return nil
  102. end
  103. KillButton.MouseButton1Down:connect(function()
  104. local Target = FindPlayer(KillText.Text)
  105. if Target and Target.Character then
  106. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  107. local Torso = Character:FindFirstChild("Torso") or Character:FindFirstChild("UpperTorso")
  108.  
  109. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  110. Torso.Anchored = true
  111. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  112. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  113. local hathandle = hat.Handle
  114. hathandle.Parent = tool
  115. hathandle.Massless = true
  116. tool.GripPos = Vector3.new(0, 9e99, 0)
  117. tool.Parent = LocalPlayer.Character
  118. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  119. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  120. Torso.Anchored = false
  121. repeat LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Target.Character:FindFirstChild("HumanoidRootPart").CFrame wait()
  122. until Target.Character == nil or Target.Character:FindFirstChild("Humanoid").Health <= 0 or LocalPlayer.Character == nil or LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0 or (Target.Character:FindFirstChild("HumanoidRootPart").Velocity.magnitude - Target.Character:FindFirstChild("Humanoid").WalkSpeed) > (Target.Character:FindFirstChild("Humanoid").WalkSpeed + 20)
  123. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  124. hathandle.Parent = hat
  125. hathandle.Massless = false
  126. tool:Destroy()
  127. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  128. else
  129. game:GetService("StarterGui"):SetCore("SendNotification",{
  130. Title = "Error",
  131. Text = "Player not found.",
  132. Duration = 10,
  133. })
  134. game:GetService("StarterGui"):SetCore("SendNotification",{
  135. Title = "Tip",
  136. Text = "You don't have to type their full name.",
  137. Duration = 10,
  138. })
  139. end
  140. end)
  141.  
  142. Noclip.Name = "Noclip"
  143. Noclip.Parent = Main
  144. Noclip.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  145. Noclip.Position = UDim2.new(0.0922208577, 0, 0.0585872419, 0)
  146. Noclip.Size = UDim2.new(0, 75, 0, 30)
  147. Noclip.Style = Enum.ButtonStyle.RobloxRoundButton
  148. Noclip.Font = Enum.Font.SciFi
  149. Noclip.Text = "Noclip"
  150. Noclip.TextColor3 = Color3.fromRGB(255, 255, 255)
  151. Noclip.TextSize = 14.000
  152. Noclip.MouseButton1Down:connect(function()
  153. loadstring(game:HttpGet(('https://pastebin.com/raw/4MTGHXvS'),true))()
  154. end)
  155.  
  156. Fly.Name = "Fly"
  157. Fly.Parent = Main
  158. Fly.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  159. Fly.Position = UDim2.new(0.502220869, 0, 0.0585872419, 0)
  160. Fly.Size = UDim2.new(0, 75, 0, 30)
  161. Fly.Style = Enum.ButtonStyle.RobloxRoundButton
  162. Fly.Font = Enum.Font.SciFi
  163. Fly.Text = "Fly"
  164. Fly.TextColor3 = Color3.fromRGB(255, 255, 255)
  165. Fly.TextSize = 14.000
  166. Fly.MouseButton1Down:connect(function()
  167. loadstring(game:HttpGet(('https://pastebin.com/raw/PaGrAJPw'),true))()
  168. end)
  169.  
  170. InvisFling.Name = "Invis Fling"
  171. InvisFling.Parent = Main
  172. InvisFling.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  173. InvisFling.Position = UDim2.new(0.502220869, 0, 0.133587241, 0)
  174. InvisFling.Size = UDim2.new(0, 75, 0, 30)
  175. InvisFling.Style = Enum.ButtonStyle.RobloxRoundButton
  176. InvisFling.Font = Enum.Font.SciFi
  177. InvisFling.Text = "Invis Fling"
  178. InvisFling.TextColor3 = Color3.fromRGB(255, 255, 255)
  179. InvisFling.TextSize = 14.000
  180. InvisFling.MouseButton1Down:connect(function()
  181. loadstring(game:HttpGet(('https://pastebin.com/raw/Wax1jtVj'),true))()
  182. end)
  183.  
  184. InfJump.Name = "Inf Jump"
  185. InfJump.Parent = Main
  186. InfJump.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  187. InfJump.Position = UDim2.new(0.0922208577, 0, 0.133587241, 0)
  188. InfJump.Size = UDim2.new(0, 75, 0, 30)
  189. InfJump.Style = Enum.ButtonStyle.RobloxRoundButton
  190. InfJump.Font = Enum.Font.SciFi
  191. InfJump.Text = "Inf Jump"
  192. InfJump.TextColor3 = Color3.fromRGB(255, 255, 255)
  193. InfJump.TextSize = 14.000
  194. InfJump.MouseButton1Down:connect(function()
  195. loadstring(game:HttpGet(('https://pastebin.com/raw/dQHegvWF'),true))()
  196. end)
  197.  
  198. ClickTP.Name = "Click TP"
  199. ClickTP.Parent = Main
  200. ClickTP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  201. ClickTP.Position = UDim2.new(0.502220869, 0, 0.286087215, 0)
  202. ClickTP.Size = UDim2.new(0, 75, 0, 30)
  203. ClickTP.Style = Enum.ButtonStyle.RobloxRoundButton
  204. ClickTP.Font = Enum.Font.SciFi
  205. ClickTP.Text = "Click TP"
  206. ClickTP.TextColor3 = Color3.fromRGB(255, 255, 255)
  207. ClickTP.TextSize = 14.000
  208. ClickTP.MouseButton1Down:connect(function()
  209. loadstring(game:HttpGet(('https://pastebin.com/raw/fxJsZddm'),true))()
  210. end)
  211.  
  212. ClickDelete.Name = "Click Delete"
  213. ClickDelete.Parent = Main
  214. ClickDelete.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  215. ClickDelete.Position = UDim2.new(0.0922208577, 0, 0.286087215, 0)
  216. ClickDelete.Size = UDim2.new(0, 75, 0, 30)
  217. ClickDelete.Style = Enum.ButtonStyle.RobloxRoundButton
  218. ClickDelete.Font = Enum.Font.SciFi
  219. ClickDelete.Text = "Click Del"
  220. ClickDelete.TextColor3 = Color3.fromRGB(255, 255, 255)
  221. ClickDelete.TextSize = 14.000
  222. ClickDelete.MouseButton1Down:connect(function()
  223. loadstring(game:HttpGet(('https://pastebin.com/raw/ZbPFRAvV'),true))()
  224. end)
  225.  
  226. RevisAdmin.Name = "Revis Admin"
  227. RevisAdmin.Parent = Main
  228. RevisAdmin.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  229. RevisAdmin.Position = UDim2.new(0.0922208577, 0, 0.211087227, 0)
  230. RevisAdmin.Size = UDim2.new(0, 75, 0, 30)
  231. RevisAdmin.Style = Enum.ButtonStyle.RobloxRoundButton
  232. RevisAdmin.Font = Enum.Font.SciFi
  233. RevisAdmin.Text = "Admin"
  234. RevisAdmin.TextColor3 = Color3.fromRGB(255, 255, 255)
  235. RevisAdmin.TextSize = 14.000
  236. RevisAdmin.MouseButton1Down:connect(function()
  237. loadstring(game:HttpGet(('https://pastebin.com/raw/VRmfB4VJ'),true))()
  238. end)
  239.  
  240. DarkDex.Name = "DarkDex"
  241. DarkDex.Parent = Main
  242. DarkDex.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  243. DarkDex.Position = UDim2.new(0.502220869, 0, 0.211087227, 0)
  244. DarkDex.Size = UDim2.new(0, 75, 0, 30)
  245. DarkDex.Style = Enum.ButtonStyle.RobloxRoundButton
  246. DarkDex.Font = Enum.Font.SciFi
  247. DarkDex.Text = "DarkDex"
  248. DarkDex.TextColor3 = Color3.fromRGB(255, 255, 255)
  249. DarkDex.TextSize = 14.000
  250. DarkDex.MouseButton1Down:connect(function()
  251. loadstring(game:HttpGet(('https://pastebin.com/raw/kJvgk8YL'),true))()
  252. end)
  253.  
  254. WalkSpeedText.Name = "WalkSpeed Text"
  255. WalkSpeedText.Parent = Main
  256. WalkSpeedText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  257. WalkSpeedText.BackgroundTransparency = 0.500
  258. WalkSpeedText.BorderColor3 = Color3.fromRGB(0, 0, 0)
  259. WalkSpeedText.BorderSizePixel = 2
  260. WalkSpeedText.Position = UDim2.new(0.0849999338, 0, 0.524999976, 0)
  261. WalkSpeedText.Size = UDim2.new(0, 60, 0, 20)
  262. WalkSpeedText.Font = Enum.Font.SourceSans
  263. WalkSpeedText.PlaceholderColor3 = Color3.fromRGB(100, 100, 100)
  264. WalkSpeedText.PlaceholderText = "Speed"
  265. WalkSpeedText.Text = ""
  266. WalkSpeedText.TextColor3 = Color3.fromRGB(0, 0, 0)
  267. WalkSpeedText.TextSize = 14.000
  268.  
  269. JumpText.Name = "Jump Text"
  270. JumpText.Parent = Main
  271. JumpText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  272. JumpText.BackgroundTransparency = 0.500
  273. JumpText.BorderColor3 = Color3.fromRGB(0, 0, 0)
  274. JumpText.BorderSizePixel = 2
  275. JumpText.Position = UDim2.new(0.579999983, 0, 0.524999976, 0)
  276. JumpText.Size = UDim2.new(0, 60, 0, 20)
  277. JumpText.Font = Enum.Font.SourceSans
  278. JumpText.PlaceholderColor3 = Color3.fromRGB(100, 100, 100)
  279. JumpText.PlaceholderText = "Jump"
  280. JumpText.Text = ""
  281. JumpText.TextColor3 = Color3.fromRGB(0, 0, 0)
  282. JumpText.TextSize = 14.000
  283.  
  284. SetSpeed.Name = "Set Speed"
  285. SetSpeed.Parent = Main
  286. SetSpeed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  287. SetSpeed.Position = UDim2.new(0.0846545398, 0, 0.601824284, 0)
  288. SetSpeed.Size = UDim2.new(0, 60, 0, 30)
  289. SetSpeed.Style = Enum.ButtonStyle.RobloxRoundButton
  290. SetSpeed.Font = Enum.Font.SciFi
  291. SetSpeed.Text = "Set"
  292. SetSpeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  293. SetSpeed.TextSize = 14.000
  294. SetSpeed.MouseButton1Down:connect(function()
  295. game:GetService("StarterGui"):SetCore("SendNotification",{
  296. Title = "Walk Speed Updated!",
  297. Text = "But how fast can you really go?",
  298. Duration = 10,
  299. })
  300. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = WalkSpeedText.Text
  301. end)
  302.  
  303. SetJump.Name = "Set Jump"
  304. SetJump.Parent = Main
  305. SetJump.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  306. SetJump.Position = UDim2.new(0.579654574, 0, 0.601824284, 0)
  307. SetJump.Size = UDim2.new(0, 60, 0, 30)
  308. SetJump.Style = Enum.ButtonStyle.RobloxRoundButton
  309. SetJump.Font = Enum.Font.SciFi
  310. SetJump.Text = "Set"
  311. SetJump.TextColor3 = Color3.fromRGB(255, 255, 255)
  312. SetJump.TextSize = 14.000
  313. SetJump.MouseButton1Down:connect(function()
  314. game:GetService("StarterGui"):SetCore("SendNotification",{
  315. Title = "Jump Power Updated!",
  316. Text = "Maybe you can get to the moon...",
  317. Duration = 10,
  318. })
  319. game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumpText.Text
  320. end)
  321.  
  322. PlayerTitle.Name = "Player Title"
  323. PlayerTitle.Parent = Main
  324. PlayerTitle.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  325. PlayerTitle.BorderSizePixel = 0
  326. PlayerTitle.Position = UDim2.new(-0.0449999981, 0, 0.454999983, 0)
  327. PlayerTitle.Size = UDim2.new(0, 200, 0, 20)
  328. PlayerTitle.Font = Enum.Font.SciFi
  329. PlayerTitle.Text = "Player"
  330. PlayerTitle.TextColor3 = Color3.fromRGB(255, 0, 0)
  331. PlayerTitle.TextSize = 14.000
  332.  
  333. FEGodmode.Name = "FE Godmode"
  334. FEGodmode.Parent = Main
  335. FEGodmode.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  336. FEGodmode.Position = UDim2.new(0.0922208577, 0, 0.361087203, 0)
  337. FEGodmode.Size = UDim2.new(0, 75, 0, 30)
  338. FEGodmode.Style = Enum.ButtonStyle.RobloxRoundButton
  339. FEGodmode.Font = Enum.Font.SciFi
  340. FEGodmode.Text = "ESP"
  341. FEGodmode.TextColor3 = Color3.fromRGB(255, 255, 255)
  342. FEGodmode.TextSize = 14.000
  343. FEGodmode.MouseButton1Down:connect(function()
  344. game:GetService("StarterGui"):SetCore("SendNotification",{
  345. Title = "ESP Enabled!",
  346. Text = "Xray goggles",
  347. Duration = 10,
  348. })
  349. loadstring(game:HttpGet(('https://pastebin.com/raw/mwUhAxjU'),true))()
  350. end)
  351.  
  352. FPSGUI.Name = "FPS GUI"
  353. FPSGUI.Parent = Main
  354. FPSGUI.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  355. FPSGUI.Position = UDim2.new(0.502220869, 0, 0.361087203, 0)
  356. FPSGUI.Size = UDim2.new(0, 75, 0, 30)
  357. FPSGUI.Style = Enum.ButtonStyle.RobloxRoundButton
  358. FPSGUI.Font = Enum.Font.SciFi
  359. FPSGUI.Text = "FPS GUI v2"
  360. FPSGUI.TextColor3 = Color3.fromRGB(255, 255, 255)
  361. FPSGUI.TextSize = 14.000
  362. FPSGUI.MouseButton1Down:connect(function()
  363. game:GetService("StarterGui"):SetCore("SendNotification",{
  364. Title = "FPS GUI Enabled!",
  365. Text = "Works in most FPS games (not Phantom Forces)",
  366. Duration = 10,
  367. })
  368. loadstring(game:HttpGet(('https://pastebin.com/raw/4JW5EGG3'),true))()
  369. end)
  370.  
  371. Close.Name = "Close"
  372. Close.Parent = Main
  373. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  374. Close.BackgroundTransparency = 1.000
  375. Close.Position = UDim2.new(0.914632916, 0, -0.0193918869, 0)
  376. Close.Size = UDim2.new(0, 20, 0, 20)
  377. Close.Font = Enum.Font.SciFi
  378. Close.Text = "X"
  379. Close.TextColor3 = Color3.fromRGB(255, 0, 0)
  380. Close.TextSize = 14.000
  381. Close.MouseButton1Down:connect(function()
  382. Open.Visible = true
  383. Main.Visible = false
  384. end)
  385.  
  386. Open.Name = "Open"
  387. Open.Parent = AtariWow
  388. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  389. Open.Position = UDim2.new(0.0154225826, 0, 0.932432413, 0)
  390. Open.Size = UDim2.new(0, 100, 0, 30)
  391. Open.Style = Enum.ButtonStyle.RobloxButtonDefault
  392. Open.Font = Enum.Font.SciFi
  393. Open.Text = "Open"
  394. Open.TextColor3 = Color3.fromRGB(255, 0, 0)
  395. Open.TextSize = 14.000
  396. Open.MouseButton1Down:connect(function()
  397. Main.Visible = true
  398. Open.Visible = false
  399. end)
  400.  
  401. -- Scripts:
  402.  
  403. local function WOQQBPD_fake_script() -- Main.LocalScript
  404. local script = Instance.new('LocalScript', Main)
  405.  
  406. script.parent.Selectable = true
  407. script.Parent.Active = true
  408. script.parent.Draggable = true
  409. end
  410. coroutine.wrap(WOQQBPD_fake_script)()
  411. local function TGZRHOH_fake_script() -- Main.LocalScript
  412. local script = Instance.new('LocalScript', Main)
  413.  
  414. game:GetService("StarterGui"):SetCore("SendNotification",{
  415. Title = "AtariWow V3",
  416. Text = "Report bugs to Koreans#9057",
  417. Duration = 10,
  418. })
  419. end
  420. coroutine.wrap(TGZRHOH_fake_script)()
Add Comment
Please, Sign In to add comment