-
Notifications
You must be signed in to change notification settings - Fork 8
/
Dungeon-Quest
238 lines (227 loc) · 7.03 KB
/
Dungeon-Quest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
local Config = {
WindowName = "V.G Hub",
Color = Color3.fromRGB(255,128,64),
Keybind = Enum.KeyCode.RightShift
}
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/1201for/V.G-Hub/main/im-retarded-3"))()
local Window = Library:CreateWindow(Config, game:GetService("CoreGui"))
local Tab1 = Window:CreateTab("Dungeon Quest")
local Tab2 = Window:CreateTab("UI Settings")
local Section1 = Tab1:CreateSection("")
local Section2 = Tab1:CreateSection("")
local Section3 = Tab2:CreateSection("Menu")
local Section4 = Tab2:CreateSection("Background")
local Button1 = Section1:CreateButton("Start Dungeon", function()
game:GetService("ReplicatedStorage").remotes.changeStartValue:FireServer()
end)
local Button1 = Section1:CreateButton("HideName SS", function()
game:GetService('RunService').Stepped:connect(function()
pcall(function()
game.Players.LocalPlayer.Character.playerNameplate:remove() end) end) end)
local Toggle1 = Section1:CreateToggle("Kill Aura", nil, function(State)
n1 = State
local ClientSidedMobs = {
['Sand Peasant'] = true,
['Sand Giant']= true,
['Frost Minion'] = true,
['Frost Wizard'] = true,
['Ice Minion'] = true,
['Pirate Savage'] = true,
['Pirate Rifleman'] = true,
['Infected Pirate'] = true,
["King's Guard"] = true,
['Elementalist'] = true,
['Hitman'] = true,
['Demon Warrior'] = true,
['Dark Mage'] = true,
['Elder Dark Mage'] = true,
['Blood Minions'] = true,
['Samurai Swordsman'] = true,
['Shuriken Thrower'] = true,
['Ultimate Swordsman'] = true,
['Sanada Yukimura'] = true,
['Ancient Golem Guardian'] = true,
['Bodyguard'] = true,
['Dark Magician'] = true,
['Unknown Minion'] = true,
['Raider'] = true,
['Harpoon Gunner'] = true,
['Burly Enforcer'] = true,
['Cannon Crab'] = true,
['Fighter Bot'] = true,
['Cog Shooter'] = true,
['Hammer Bot'] = true,
['Spinner Bot'] = true,
['Hologram Assassin'] = true,
['Hologram Warrior'] = true,
['Scout Drone'] = true,
['Electric Tower'] = true,
['Aggressive Lava Walker'] = true,
['Explosive Lava Walker'] = true,
['Artillery Lava Walker'] = true,
['Temple Spirit'] = true,
['Defensive Cube Pylon'] = true,
['Defensive Pyramid Pylon'] = true,
}
game:GetService('RunService').Stepped:connect(function()
pcall(function()
if n1 then
setscriptable(game.Players.LocalPlayer, "SimulationRadius", true)
setsimulationradius(50,50)
end end) end)
game:GetService('RunService').Stepped:connect(function()
if n1 then
for i, v in next, game.workspace.dungeon:GetChildren() do
if v:FindFirstChild("enemyFolder") and v.enemyFolder:FindFirstChildOfClass("Model") then
for a, x in next, v.enemyFolder:GetChildren() do
if x:IsA("Model") and x:FindFirstChild("HumanoidRootPart") and x:FindFirstChild("Humanoid") then
if ClientSidedMobs[x.Name] and x:FindFirstChild("enemyStyle") then
if isnetworkowner(x.HumanoidRootPart) then
x.Humanoid.Health = 0
end
end
end
end
end
end
end
end)
end)
local Toggle1 = Section1:CreateToggle("Kill All", nil, function(State)
n2 = State
local ClientSidedMobs = {
['Sand Peasant'] = true,
['Sand Giant']= true,
['Frost Minion'] = true,
['Frost Wizard'] = true,
['Ice Minion'] = true,
['Pirate Savage'] = true,
['Pirate Rifleman'] = true,
['Infected Pirate'] = true,
["King's Guard"] = true,
['Elementalist'] = true,
['Hitman'] = true,
['Demon Warrior'] = true,
['Dark Mage'] = true,
['Elder Dark Mage'] = true,
['Blood Minions'] = true,
['Samurai Swordsman'] = true,
['Shuriken Thrower'] = true,
['Ultimate Swordsman'] = true,
['Sanada Yukimura'] = true,
['Ancient Golem Guardian'] = true,
['Bodyguard'] = true,
['Dark Magician'] = true,
['Unknown Minion'] = true,
['Raider'] = true,
['Harpoon Gunner'] = true,
['Burly Enforcer'] = true,
['Cannon Crab'] = true,
['Fighter Bot'] = true,
['Cog Shooter'] = true,
['Hammer Bot'] = true,
['Spinner Bot'] = true,
['Hologram Assassin'] = true,
['Hologram Warrior'] = true,
['Scout Drone'] = true,
['Electric Tower'] = true,
['Aggressive Lava Walker'] = true,
['Explosive Lava Walker'] = true,
['Artillery Lava Walker'] = true,
['Temple Spirit'] = true,
['Defensive Cube Pylon'] = true,
['Defensive Pyramid Pylon'] = true,
}
game:GetService('RunService').Stepped:connect(function()
pcall(function()
if n2 then
setscriptable(game.Players.LocalPlayer, "SimulationRadius", true)
setsimulationradius(math.huge,math.huge)
end end) end)
game:GetService('RunService').Stepped:connect(function()
if n2 then
for i, v in next, game.workspace.dungeon:GetChildren() do
if v:FindFirstChild("enemyFolder") and v.enemyFolder:FindFirstChildOfClass("Model") then
for a, x in next, v.enemyFolder:GetChildren() do
if x:IsA("Model") and x:FindFirstChild("HumanoidRootPart") and x:FindFirstChild("Humanoid") then
if ClientSidedMobs[x.Name] and x:FindFirstChild("enemyStyle") then
if isnetworkowner(x.HumanoidRootPart) then
x.Humanoid.Health = 0
end
end
end
end
end
end
end
end)
end)
local Toggle1 = Section1:CreateToggle("AutoSpells", nil, function(State)
AutoUseAbilities = State
game:GetService("RunService").Heartbeat:Connect(function()
pcall(function()
if AutoUseAbilities then
for i, v in next, game:GetService("Players").LocalPlayer.Backpack:GetChildren() do
if v.cooldown.Value <= 0 then
local Event = v:FindFirstChildOfClass("RemoteEvent")
if Event then
Event:FireServer()
end
end
end
end
end)
end)
end)
local Slider2 = Section1:CreateSlider("WalkSpeed", 5,32,nil,false, function(Value)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
end)
local Toggle3 = Section3:CreateToggle("UI Toggle", nil, function(State)
Window:Toggle(State)
end)
Toggle3:CreateKeybind(tostring(Config.Keybind):gsub("Enum.KeyCode.", ""), function(Key)
Config.Keybind = Enum.KeyCode[Key]
end)
Toggle3:SetState(true)
Section3:CreateLabel("Credits DekuDimz#7960")
Section3:CreateLabel("Credits AlexR32#3232 Ui")
local Colorpicker3 = Section3:CreateColorpicker("UI Color", function(Color)
Window:ChangeColor(Color)
end)
Colorpicker3:UpdateColor(Config.Color)
-- credits to jan for patterns
local Dropdown3 = Section4:CreateDropdown("Image")
local Option7 = Dropdown3:AddOption("Default", function(String)
Window:SetBackground("2151741365")
end)
local Option8 = Dropdown3:AddOption("Hearts", function(String)
Window:SetBackground("6073763717")
end)
local Option9 = Dropdown3:AddOption("Abstract", function(String)
Window:SetBackground("6073743871")
end)
local Option10 = Dropdown3:AddOption("Hexagon", function(String)
Window:SetBackground("6073628839")
end)
local Option11 = Dropdown3:AddOption("Circles", function(String)
Window:SetBackground("6071579801")
end)
local Option12 = Dropdown3:AddOption("Lace With Flowers", function(String)
Window:SetBackground("6071575925")
end)
local Option13 = Dropdown3:AddOption("Floral", function(String)
Window:SetBackground("5553946656")
end)
Option7:SetOption()
local Colorpicker4 = Section4:CreateColorpicker("Color", function(Color)
Window:SetBackgroundColor(Color)
end)
Colorpicker4:UpdateColor(Color3.new(1,1,1))
local Slider3 = Section4:CreateSlider("Transparency",0,1,nil,false, function(Value)
Window:SetBackgroundTransparency(Value)
end)
Slider3:SetValue(0)
local Slider4 = Section4:CreateSlider("Tile Scale",0,1,nil,false, function(Value)
Window:SetTileScale(Value)
end)
Slider4:SetValue(0.5)