Advertisement
ThotScripter

Dungeon Quest Script

Apr 9th, 2019
73,301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.31 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local onepieceGrandTrail = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextLabel_2 = Instance.new("TextLabel")
  8. local TextLabel_3 = Instance.new("TextLabel")
  9. local TextLabel_4 = Instance.new("TextLabel")
  10. local autofarm = Instance.new("TextButton")
  11. local kick = Instance.new("TextButton")
  12. local clicktp = Instance.new("TextButton")
  13. local autojoingamme = Instance.new("TextButton")
  14. local admin = Instance.new("TextButton")
  15. local title = Instance.new("TextButton")
  16. local title_2 = Instance.new("TextButton")
  17. local title_3 = Instance.new("TextButton")
  18. local darkdevs = Instance.new("TextButton")
  19. local killeneimes = Instance.new("TextButton")
  20. local skiddfarm = Instance.new("TextButton")
  21. local title_4 = Instance.new("TextButton")
  22. --Properties:
  23. onepieceGrandTrail.Name = "one piece Grand Trail"
  24. onepieceGrandTrail.Parent = game.CoreGui
  25. onepieceGrandTrail.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. Frame.Parent = onepieceGrandTrail
  28. Frame.BackgroundColor3 = Color3.new(0.666667, 0.333333, 0)
  29. Frame.BackgroundTransparency = 0.5
  30. Frame.BorderColor3 = Color3.new(0, 0, 0)
  31. Frame.BorderSizePixel = 5
  32. Frame.Position = UDim2.new(0.168431774, 0, 0.31122449, 0)
  33. Frame.Size = UDim2.new(0, 638, 0, 263)
  34. Frame.Active = true
  35. Frame.Draggable = true
  36.  
  37. TextLabel.Parent = Frame
  38. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  39. TextLabel.BackgroundTransparency = 1
  40. TextLabel.Position = UDim2.new(-0.0351663269, 0, -0.0275978632, 0)
  41. TextLabel.Size = UDim2.new(0, 98, 0, 50)
  42. TextLabel.Font = Enum.Font.Fantasy
  43. TextLabel.Text = "R"
  44. TextLabel.TextColor3 = Color3.new(0.666667, 0, 0)
  45. TextLabel.TextSize = 50
  46.  
  47. TextLabel_2.Parent = Frame
  48. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  49. TextLabel_2.BackgroundTransparency = 1
  50. TextLabel_2.Position = UDim2.new(0.0689635575, 0, -0.0275978632, 0)
  51. TextLabel_2.Size = UDim2.new(0, 98, 0, 50)
  52. TextLabel_2.Font = Enum.Font.Fantasy
  53. TextLabel_2.Text = "oblox"
  54. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  55. TextLabel_2.TextSize = 50
  56.  
  57. TextLabel_3.Parent = Frame
  58. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  59. TextLabel_3.BackgroundTransparency = 1
  60. TextLabel_3.Position = UDim2.new(0.857901812, 0, -0.0275978632, 0)
  61. TextLabel_3.Size = UDim2.new(0, 98, 0, 50)
  62. TextLabel_3.Font = Enum.Font.Fantasy
  63. TextLabel_3.Text = "ain"
  64. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  65. TextLabel_3.TextSize = 50
  66.  
  67. TextLabel_4.Parent = Frame
  68. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  69. TextLabel_4.BackgroundTransparency = 1
  70. TextLabel_4.Position = UDim2.new(0.784785867, 0, -0.0275978632, 0)
  71. TextLabel_4.Size = UDim2.new(0, 98, 0, 50)
  72. TextLabel_4.Font = Enum.Font.Fantasy
  73. TextLabel_4.Text = "P"
  74. TextLabel_4.TextColor3 = Color3.new(0.666667, 0, 0)
  75. TextLabel_4.TextSize = 50
  76.  
  77. autofarm.Name = "autofarm"
  78. autofarm.Parent = Frame
  79. autofarm.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  80. autofarm.BorderColor3 = Color3.new(0, 0, 0)
  81. autofarm.BorderSizePixel = 5
  82. autofarm.Position = UDim2.new(0.0305984635, 0, 0.186242342, 0)
  83. autofarm.Size = UDim2.new(0, 171, 0, 27)
  84. autofarm.Font = Enum.Font.Fantasy
  85. autofarm.Text = "AutoFarm"
  86. autofarm.TextColor3 = Color3.new(0, 0, 0)
  87. autofarm.TextSize = 20
  88. autofarm.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  89. autofarm.MouseButton1Down:connect(function()
  90. -- Won't Break And Won't Stop Until All Enemies Are Killed In The Dungeon
  91. -- Modilfy It If You Want
  92. _G.farm = true -- false to stop
  93. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  94. local sword = game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChildOfClass('Accessory')
  95. while _G.farm do
  96. wait()
  97. for _,v in pairs(game.Workspace:GetDescendants()) do
  98. if v:FindFirstChild("enemyNameplate") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") then
  99. plr.CFrame = CFrame.new(v.HumanoidRootPart.Position + Vector3.new(0,1,5),v.HumanoidRootPart.Position)
  100. -- Reverse This To Spawn Them Infront Of You Instead Going Towards Them!
  101. local Path = sword.swing
  102. Path:FireServer()
  103. -- [[ local Path = game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChild('Fireball');Path.fireballShootEvent:FireServer() ]]
  104. end
  105. end
  106. end
  107. end)
  108.  
  109. kick.Name = "kick"
  110. kick.Parent = Frame
  111. kick.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  112. kick.BorderColor3 = Color3.new(0, 0, 0)
  113. kick.BorderSizePixel = 5
  114. kick.Position = UDim2.new(0.361319363, 0, 0.357344985, 0)
  115. kick.Size = UDim2.new(0, 171, 0, 27)
  116. kick.Font = Enum.Font.Fantasy
  117. kick.Text = "Anti-AFK"
  118. kick.TextColor3 = Color3.new(0, 0, 0)
  119. kick.TextSize = 20
  120. kick.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  121. kick.MouseButton1Down:connect(function()
  122. local getrawmetatable = getrawmetatable or debug.getmetatable
  123. local make_writeable = make_writeable or setreadonly or changereadonly or change_writeable
  124. make_writeable(getrawmetatable(game), false)
  125. local backup = getrawmetatable(game).__namecall
  126. getrawmetatable(game).__namecall = function(u, ...)
  127. local m = ({...})[select('#', ...)]
  128. local packed = {...}
  129. local a = {}
  130. for i = 1, #packed - 1 do
  131. a[i] = packed[i]
  132. end
  133. if m == 'Kick' then
  134. warn('Kick attempt at ' .. os.time() .. ' (' .. tostring(unpack(a)) .. ')')
  135. return true
  136. end
  137. return backup and backup(u, ...) or u[m](u, unpack(a))
  138. end
  139. end)
  140.  
  141. clicktp.Name = "click tp"
  142. clicktp.Parent = Frame
  143. clicktp.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  144. clicktp.BorderColor3 = Color3.new(0, 0, 0)
  145. clicktp.BorderSizePixel = 5
  146. clicktp.Position = UDim2.new(0.0305984318, 0, 0.35665369, 0)
  147. clicktp.Size = UDim2.new(0, 171, 0, 27)
  148. clicktp.Font = Enum.Font.Fantasy
  149. clicktp.Text = "Click TP"
  150. clicktp.TextColor3 = Color3.new(0, 0, 0)
  151. clicktp.TextSize = 20
  152. clicktp.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  153. clicktp.MouseButton1Down:connect(function()
  154. local Player = game.Players.LocalPlayer
  155. local Mouse = Player:GetMouse()
  156. local UserInputService = game:GetService('UserInputService')
  157.  
  158. local HoldingControl = false
  159.  
  160. Mouse.Button1Down:connect(function()
  161. if HoldingControl then
  162. Player.Character:MoveTo(Mouse.Hit.p)
  163. end
  164. end)
  165.  
  166. UserInputService.InputBegan:connect(function(Input, Processed)
  167. if Input.UserInputType == Enum.UserInputType.Keyboard then
  168. if Input.KeyCode == Enum.KeyCode.LeftControl then
  169. HoldingControl = true
  170. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  171. HoldingControl = true
  172. end
  173. end
  174. end)
  175.  
  176. UserInputService.InputEnded:connect(function(Input, Processed)
  177. if Input.UserInputType == Enum.UserInputType.Keyboard then
  178. if Input.KeyCode == Enum.KeyCode.LeftControl then
  179. HoldingControl = false
  180. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  181. HoldingControl = false
  182. end
  183. end
  184. end)
  185. end)
  186.  
  187. autojoingamme.Name = "auto join gamme"
  188. autojoingamme.Parent = Frame
  189. autojoingamme.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  190. autojoingamme.BorderColor3 = Color3.new(0, 0, 0)
  191. autojoingamme.BorderSizePixel = 5
  192. autojoingamme.Position = UDim2.new(0.361319512, 0, 0.185551018, 0)
  193. autojoingamme.Size = UDim2.new(0, 171, 0, 27)
  194. autojoingamme.Font = Enum.Font.Fantasy
  195. autojoingamme.Text = "Auto Join Game"
  196. autojoingamme.TextColor3 = Color3.new(0, 0, 0)
  197. autojoingamme.TextSize = 20
  198. autojoingamme.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  199. autojoingamme.MouseButton1Down:connect(function()
  200. --[[
  201. i love black men
  202. --]]
  203.  
  204. wait(3)local a=game.Players.LocalPlayer;local b=a.leaderstats.Level.Value;local c=game:GetService('ReplicatedStorage').remotes.createLobby;local d=game.ReplicatedStorage.remotes.startDungeon;local e=game:GetService("ReplicatedStorage").remotes:FindFirstChild('changeStartValue')local function f(b)if b>=55 then c:InvokeServer('Winter Outpost','Nightmare',0,true,false)d:FireServer()elseif b>=33 then c:InvokeServer('Winter Outpost','Insane',0,true,false)d:FireServer()c:InvokeServer('Winter Outpost','Hard',0,true,false)d:FireServer()c:InvokeServer('Winter Outpost','Medium',0,true,false)d:FireServer()c:InvokeServer('Winter Outpost','Easy',0,true,false)d:FireServer()elseif b>=27 then c:InvokeServer('Desert Temple','Nightmare',0,true,false)d:FireServer()elseif b>=0 then c:InvokeServer('Desert Temple','Insane',0,true,false)d:FireServer()c:InvokeServer('Desert Temple','Hard',0,true,false)d:FireServer()c:InvokeServer('Desert Temple','Medium',0,true,false)d:FireServer()c:InvokeServer('Desert Temple','Easy',0,true,false)d:FireServer()end end;if workspace:FindFirstChild('games')then f(b)end;wait()local function g()if workspace:FindFirstChild('dungeon')then local h;local g=2e9;for i,j in pairs(workspace.dungeon:GetDescendants())do if j:FindFirstChild('Head')and j:FindFirstChild('Humanoid')then local k=(j.Head.Position-a.Character.HumanoidRootPart.Position).magnitude;if k<g then h=j;g=k end end end;return h end end;local function l()for i,j in next,workspace.dungeon:GetDescendants()do if j:FindFirstChild('Humanoid')and j:FindFirstChild('LeftUpperArm')and j:FindFirstChild('RightUpperArm')and j:FindFirstChild('RightLowerArm')and j:FindFirstChild('LeftLowerArm')and j:FindFirstChild('RightHand')and j:FindFirstChild('LeftHand')then j.LeftUpperArm:Destroy()j.RightUpperArm:Destroy()j.LeftLowerArm:Destroy()j.RightLowerArm:Destroy()j.LeftHand:Destroy()j.RightHand:Destroy()wait()end end end;local function m()if workspace:FindFirstChild('start')and workspace:FindFirstChild('start').Value==false then e:FireServer()l()wait()m()elseif workspace:FindFirstChild('start')and workspace:FindFirstChild('start').Value==true then game:GetService("RunService").RenderStepped:connect(function()if a.Character and a.Character:FindFirstChild('HumanoidRootPart')and a.Character:FindFirstChild(a.weaponEquipped.Value)then a.Character.HumanoidRootPart.CFrame=CFrame.new(g().HumanoidRootPart.Position-(6+0.25*1)*g().HumanoidRootPart.CFrame.lookVector+0.5*1*g().HumanoidRootPart.CFrame.upVector,g().HumanoidRootPart.Position)l()a.Character[a.weaponEquipped.Value].swing:FireServer()end end)end end;m()local n=game:GetService("TeleportService")while wait()do if workspace:FindFirstChild('dungeonProgress')and workspace:FindFirstChild('dungeonProgress').Value=='bossKilled'then wait(5)n:Teleport(2414851778,player)end;endwait(3)local o=game.Players.LocalPlayer;local p=o.leaderstats.Level.Value;local q=game:GetService('ReplicatedStorage').remotes.createLobby;local r=game.ReplicatedStorage.remotes.startDungeon;local s=game:GetService("ReplicatedStorage").remotes:FindFirstChild('changeStartValue')local function t(p)if p>=34 then q:InvokeServer('Winter Outpost','Insane',0,false,false)r:FireServer()q:InvokeServer('Winter Outpost','Hard',0,false,false)r:FireServer()q:InvokeServer('Winter Outpost','Medium',0,false,false)r:FireServer()q:InvokeServer('Winter Outpost','Easy',0,false,false)r:FireServer()elseif p>=27 then q:InvokeServer('Desert Temple','Nightmare',0,true,false)r:FireServer()elseif p>=0 then q:InvokeServer('Desert Temple','Insane',0,true,false)r:FireServer()q:InvokeServer('Desert Temple','Hard',0,true,false)r:FireServer()q:InvokeServer('Desert Temple','Medium',0,true,false)r:FireServer()q:InvokeServer('Desert Temple','Easy',0,true,false)r:FireServer()end end;if workspace:FindFirstChild('games')then t(p)end;wait()local function u()if workspace:FindFirstChild('dungeon')then local v;local u=2e9;for w,x in pairs(workspace.dungeon:GetDescendants())do if x:FindFirstChild('Head')and x:FindFirstChild('Humanoid')then local y=(x.Head.Position-o.Character.HumanoidRootPart.Position).magnitude;if y<u then v=x;u=y end end end;return v end end;local function z()for w,x in next,workspace.dungeon:GetDescendants()do if x:FindFirstChild('Humanoid')and x:FindFirstChild('LeftUpperArm')and x:FindFirstChild('RightUpperArm')and x:FindFirstChild('RightLowerArm')and x:FindFirstChild('LeftLowerArm')and x:FindFirstChild('RightHand')and x:FindFirstChild('LeftHand')then x.LeftUpperArm:Destroy()x.RightUpperArm:Destroy()x.LeftLowerArm:Destroy()x.RightLowerArm:Destroy()x.LeftHand:Destroy()x.RightHand:Destroy()wait()end end end;local function A()if workspace:FindFirstChild('start')and workspace:FindFirstChild('start').Value==false then s:FireServer()z()wait()A()elseif workspace:FindFirstChild('start')and workspace:FindFirstChild('start').Value==true then game:GetService("RunService").RenderStepped:connect(function()if o.Character and o.Character:FindFirstChild('HumanoidRootPart')and o.Character:FindFirstChild(o.weaponEquipped.Value)then o.Character.HumanoidRootPart.CFrame=CFrame.new(u().HumanoidRootPart.Position-(6+0.25*1)*u().HumanoidRootPart.CFrame.lookVector+0.5*1*u().HumanoidRootPart.CFrame.upVector,u().HumanoidRootPart.Position)z()o.Character[o.weaponEquipped.Value].swing:FireServer()end end)end end;A()local B=game:GetService("TeleportService")while wait()do if workspace:FindFirstChild('dungeonProgress')and workspace:FindFirstChild('dungeonProgress').Value=='bossKilled'then wait(5)B:Teleport(2414851778,player)end end end
  205. end)
  206.  
  207. admin.Name = "admin"
  208. admin.Parent = Frame
  209. admin.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  210. admin.BorderColor3 = Color3.new(0, 0, 0)
  211. admin.BorderSizePixel = 5
  212. admin.Position = UDim2.new(0.696742654, 0, 0.183461994, 0)
  213. admin.Size = UDim2.new(0, 171, 0, 27)
  214. admin.Font = Enum.Font.Fantasy
  215. admin.Text = "Admin"
  216. admin.TextColor3 = Color3.new(0, 0, 0)
  217. admin.TextSize = 20
  218. admin.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  219.  
  220. title.Name = "title"
  221. title.Parent = Frame
  222. title.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  223. title.BackgroundTransparency = 1
  224. title.BorderColor3 = Color3.new(0, 0, 0)
  225. title.BorderSizePixel = 5
  226. title.Position = UDim2.new(0.361319512, 0, 0.805322886, 0)
  227. title.Size = UDim2.new(0, 171, 0, 27)
  228. title.Font = Enum.Font.Fantasy
  229. title.Text = "UNGEON QUEST"
  230. title.TextColor3 = Color3.new(0, 0, 0)
  231. title.TextSize = 80
  232. title.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  233.  
  234. title_2.Name = "title"
  235. title_2.Parent = Frame
  236. title_2.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  237. title_2.BackgroundTransparency = 1
  238. title_2.BorderColor3 = Color3.new(0, 0, 0)
  239. title_2.BorderSizePixel = 5
  240. title_2.Position = UDim2.new(-0.1041978, 0, 0.805322886, 0)
  241. title_2.Size = UDim2.new(0, 171, 0, 27)
  242. title_2.Font = Enum.Font.Fantasy
  243. title_2.Text = "D"
  244. title_2.TextColor3 = Color3.new(0.666667, 0, 0)
  245. title_2.TextSize = 80
  246. title_2.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  247.  
  248. title_3.Name = "title"
  249. title_3.Parent = Frame
  250. title_3.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  251. title_3.BackgroundTransparency = 1
  252. title_3.BorderColor3 = Color3.new(0, 0, 0)
  253. title_3.BorderSizePixel = 5
  254. title_3.Position = UDim2.new(0.381695688, 0, 0.0579866767, 0)
  255. title_3.Size = UDim2.new(0, 171, 0, 27)
  256. title_3.Font = Enum.Font.Fantasy
  257. title_3.Text = "Mass Firing More Rest More Firing"
  258. title_3.TextColor3 = Color3.new(0, 1, 1)
  259. title_3.TextSize = 20
  260. title_3.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  261.  
  262. darkdevs.Name = "Po_kex"
  263. darkdevs.Parent = Frame
  264. darkdevs.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  265. darkdevs.BorderColor3 = Color3.new(0, 0, 0)
  266. darkdevs.BorderSizePixel = 5
  267. darkdevs.Position = UDim2.new(0.696742713, 0, 0.36045593, 0)
  268. darkdevs.Size = UDim2.new(0, 171, 0, 27)
  269. darkdevs.Font = Enum.Font.Fantasy
  270. darkdevs.Text = "Tab Gui"
  271. darkdevs.TextColor3 = Color3.new(0, 0, 0)
  272. darkdevs.TextSize = 20
  273. darkdevs.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  274. darkdevs.MouseButton1Down:connect(function()
  275.  
  276.  
  277. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "ThotScripter On V3rm", Text = "This Is Just An Un-Official Verison!"})
  278. local gui = Instance.new("ScreenGui")
  279. local Main = Instance.new("Frame")
  280. local main2 = Instance.new("Frame")
  281. local aura = Instance.new("TextButton")
  282. local upgrade = Instance.new("TextButton")
  283. local mobs = Instance.new("TextButton")
  284. local lobby = Instance.new("TextButton")
  285. local name = Instance.new("TextLabel")
  286. local name_2 = Instance.new("TextLabel")
  287. local credit = Instance.new("TextLabel")
  288.  
  289. gui.Name = "gui"
  290. gui.Parent = game.CoreGui
  291.  
  292. Main.Name = "Main"
  293. Main.Active = true
  294. Main.Draggable = true
  295. Main.Parent = gui
  296. Main.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  297. Main.Position = UDim2.new(0.431293875, 0, 0.410358638, 0)
  298. Main.Size = UDim2.new(0, 245, 0, 161)
  299.  
  300. main2.Name = "main2"
  301. main2.Parent = Main
  302. main2.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  303. main2.Position = UDim2.new(0.0244897958, 0, 0.20184648, 0)
  304. main2.Size = UDim2.new(0, 233, 0, 122)
  305.  
  306. aura.Name = "aura"
  307. aura.Parent = main2
  308. aura.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314)
  309. aura.BorderSizePixel = 0
  310. aura.Position = UDim2.new(0.0600858368, 0, 0.0921052694, 0)
  311. aura.Size = UDim2.new(0, 202, 0, 15)
  312. aura.Font = Enum.Font.Fantasy
  313. aura.Text = "Attack Aura | Sword"
  314. aura.TextColor3 = Color3.new(1, 1, 1)
  315. aura.TextSize = 14
  316.  
  317. upgrade.Name = "upgrade"
  318. upgrade.Parent = main2
  319. upgrade.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314)
  320. upgrade.BorderSizePixel = 0
  321. upgrade.Position = UDim2.new(0.0600858331, 0, 0.331967205, 0)
  322. upgrade.Size = UDim2.new(0, 202, 0, 15)
  323. upgrade.Font = Enum.Font.Fantasy
  324. upgrade.Text = "Auto Upgrade"
  325. upgrade.TextColor3 = Color3.new(1, 1, 1)
  326. upgrade.TextSize = 14
  327.  
  328. mobs.Name = "mobs"
  329. mobs.Parent = main2
  330. mobs.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314)
  331. mobs.BorderSizePixel = 0
  332. mobs.Position = UDim2.new(0.0600858331, 0, 0.562122524, 0)
  333. mobs.Size = UDim2.new(0, 202, 0, 15)
  334. mobs.Font = Enum.Font.Fantasy
  335. mobs.Text = "Kill All Mobs | Dungeon"
  336. mobs.TextColor3 = Color3.new(1, 1, 1)
  337. mobs.TextSize = 14
  338.  
  339. lobby.Name = "lobby"
  340. lobby.Parent = main2
  341. lobby.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314)
  342. lobby.BorderSizePixel = 0
  343. lobby.Position = UDim2.new(0.0600858331, 0, 0.782355487, 0)
  344. lobby.Size = UDim2.new(0, 202, 0, 15)
  345. lobby.Font = Enum.Font.Fantasy
  346. lobby.Text = "Auto Create Lobby | Start"
  347. lobby.TextColor3 = Color3.new(1, 1, 1)
  348. lobby.TextSize = 14
  349.  
  350. name.Name = "name"
  351. name.Parent = Main
  352. name.BackgroundColor3 = Color3.new(1, 1, 1)
  353. name.BackgroundTransparency = 1
  354. name.Size = UDim2.new(0, 26, 0, 26)
  355. name.Font = Enum.Font.GothamBold
  356. name.Text = "D"
  357. name.TextColor3 = Color3.new(0.705882, 0, 0.0117647)
  358. name.TextSize = 18
  359.  
  360. name_2.Name = "name"
  361. name_2.Parent = Main
  362. name_2.BackgroundColor3 = Color3.new(1, 1, 1)
  363. name_2.BackgroundTransparency = 1
  364. name_2.Position = UDim2.new(0.0816326514, 0, 0, 0)
  365. name_2.Size = UDim2.new(0, 78, 0, 26)
  366. name_2.Font = Enum.Font.GothamBold
  367. name_2.Text = "ark Devs"
  368. name_2.TextColor3 = Color3.new(0.635294, 0.631373, 0.631373)
  369. name_2.TextSize = 18
  370. name_2.TextXAlignment = Enum.TextXAlignment.Left
  371.  
  372. credit.Name = "credit"
  373. credit.Parent = Main
  374. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  375. credit.BackgroundTransparency = 1
  376. credit.Position = UDim2.new(0.612244904, 0, 0.059459459, 0)
  377. credit.Size = UDim2.new(0, 95, 0, 15)
  378. credit.Font = Enum.Font.SourceSans
  379. credit.Text = "Created By FunTratOr"
  380. credit.TextColor3 = Color3.new(1, 1, 1)
  381. credit.TextSize = 10
  382.  
  383. upgrade.MouseButton1Down:connect(function()
  384. while true do
  385. wait()
  386. local Arg1 = "weapon"
  387. local Arg2 = 1
  388. local Arg3 = "physical"
  389. local Path = game:GetService("ReplicatedStorage").remotes.upgradeItem
  390. Path:FireServer(Arg1, Arg2, Arg3)
  391. end
  392. end)
  393.  
  394. lobby.MouseButton1Down:connect(function()
  395. local Arg1 = "Desert Temple"
  396. local lobby = "Easy" -- Medium, Hard, Insane
  397. local Arg3 = 1 -- level needed to join
  398. local Arg4 = false -- if want it private, make this true
  399. local Arg5 = false
  400. local Path = game:GetService("ReplicatedStorage").remotes.createLobby
  401. Path:InvokeServer(Arg1, lobby, Arg3, Arg4, Arg5)
  402. wait(2) -- change the wait to more if you want some people to join you!
  403. local Event = game:GetService("ReplicatedStorage").remotes.startDungeon
  404. Event:FireServer()
  405. end)
  406.  
  407. aura.MouseButton1Down:connect(function()
  408. game:GetService('RunService').RenderStepped:connect(function()
  409. wait()
  410. local sword = game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChildOfClass('Accessory')
  411. local Path = sword.swing
  412. Path:FireServer() end)
  413. end)
  414.  
  415. mobs.MouseButton1Down:connect(function()
  416. -- Won't Break And Won't Stop Until All Enemies Are Killed In The Dungeon
  417. -- Modilfy It If You Want
  418. _G.farm = true -- false to stop
  419. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  420. local sword = game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChildOfClass('Accessory')
  421. while _G.farm do
  422. wait()
  423. for _,v in pairs(game.Workspace:GetDescendants()) do
  424. if v:FindFirstChild("enemyNameplate") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") then
  425. plr.CFrame = CFrame.new(v.HumanoidRootPart.Position + Vector3.new(0,1,5),v.HumanoidRootPart.Position)
  426. -- Reverse This To Spawn Them Infront Of You Instead Going Towards Them!
  427. local Path = sword.swing
  428. Path:FireServer()
  429. -- [[ local Path = game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChild('Fireball');Path.fireballShootEvent:FireServer() ]]
  430. end
  431. end
  432. end
  433. end)
  434. end)
  435.  
  436. killeneimes.Name = "kill eneimes"
  437. killeneimes.Parent = Frame
  438. killeneimes.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  439. killeneimes.BorderColor3 = Color3.new(0, 0, 0)
  440. killeneimes.BorderSizePixel = 5
  441. killeneimes.Position = UDim2.new(0.696742713, 0, 0.523954093, 0)
  442. killeneimes.Size = UDim2.new(0, 171, 0, 27)
  443. killeneimes.Font = Enum.Font.Fantasy
  444. killeneimes.Text = "Kill Enimies (Z)"
  445. killeneimes.TextColor3 = Color3.new(0, 0, 0)
  446. killeneimes.TextSize = 20
  447. killeneimes.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  448. killeneimes.MouseButton1Down:connect(function()
  449. local uis = game:GetService("UserInputService")
  450. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 40
  451.  
  452. uis.InputBegan:Connect(function(k, gp)
  453. if k.KeyCode == Enum.KeyCode.Z and not gp then
  454. for i,v in pairs(workspace:GetDescendants()) do
  455. if v:FindFirstChild("Humanoid") and v ~= game.Players.LocalPlayer.Character then
  456. local myPart = game.Players.LocalPlayer.Character.UpperTorso
  457. local enemyPart = v:FindFirstChildWhichIsA("BasePart")
  458. enemyPart.Anchored = true
  459. local offset = Vector3.new(1.5, 1, -4)
  460. spawn(function()
  461. while wait(.1) do
  462. if v.PrimaryPart and v.PrimaryPart:IsDescendantOf(workspace) then
  463. v:SetPrimaryPartCFrame(myPart.CFrame * CFrame.new(offset))
  464. else
  465. break
  466. end
  467. end
  468. end)
  469. end
  470. end
  471. end
  472. end)
  473. end)
  474.  
  475. skiddfarm.Name = " UhFarm Every Mob?"
  476. skiddfarm.Parent = Frame
  477. skiddfarm.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  478. skiddfarm.BorderColor3 = Color3.new(0, 0, 0)
  479. skiddfarm.BorderSizePixel = 5
  480. skiddfarm.Position = UDim2.new(0.364454299, 0, 0.523954093, 0)
  481. skiddfarm.Size = UDim2.new(0, 171, 0, 27)
  482. skiddfarm.Font = Enum.Font.Fantasy
  483. skiddfarm.Text = "skidd auto farm"
  484. skiddfarm.TextColor3 = Color3.new(0, 0, 0)
  485. skiddfarm.TextSize = 20
  486. skiddfarm.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  487. skiddfarm.MouseButton1Down:connect(function()
  488. -- Won't Break And Won't Stop Until All Enemies Are Killed In The Dungeon
  489. -- Modilfy It If You Want
  490. _G.farm = true -- false to stop
  491. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  492. local sword = game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChildOfClass('Accessory')
  493. while _G.farm do
  494. wait()
  495. for _,v in pairs(game.Workspace:GetDescendants()) do
  496. if v:FindFirstChild("enemyNameplate") and v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") then
  497. plr.CFrame = CFrame.new(v.HumanoidRootPart.Position + Vector3.new(0,1,5),v.HumanoidRootPart.Position)
  498. -- Reverse This To Spawn Them Infront Of You Instead Going Towards Them!
  499. local Path = sword.swing
  500. Path:FireServer()
  501. -- [[ local Path = game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChild('Fireball');Path.fireballShootEvent:FireServer() ]]
  502. end
  503. end
  504. end
  505. end)
  506.  
  507. title_4.Name = "title"
  508. title_4.Parent = Frame
  509. title_4.BackgroundColor3 = Color3.new(1, 0.666667, 0.498039)
  510. title_4.BackgroundTransparency = 1
  511. title_4.BorderColor3 = Color3.new(0, 0, 0)
  512. title_4.Position = UDim2.new(0.0102223456, 0, 0.573383749, 0)
  513. title_4.Rotation = 35
  514. title_4.Size = UDim2.new(0, 171, 0, 27)
  515. title_4.Font = Enum.Font.Fantasy
  516. title_4.Text = "ENJOY!!"
  517. title_4.TextColor3 = Color3.new(1, 0, 0)
  518. title_4.TextSize = 20
  519. title_4.TextStrokeColor3 = Color3.new(0.666667, 0.333333, 0.498039)
  520. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement