· 5 years ago · Feb 24, 2021, 04:02 AM
1--[[
2 made by TheRobloxPlayer2509 (Pepelol23272 on v3rm, le baguette revolution#7762 in discord)
3 Coronage GUI for Inspectrum 2 (https://www.roblox.com/games/6270513174/Inspectrum-2)
4
5 Coronage V1, more updates and features coming soon
6 UPDATED: UNPATCHED TRINKET AUTO PICKUP, AUTO LANNIS, AUTO PHILO AND ALWAYS SILVERGUARD
7 FIXED ANTI BAN AND ADDED MOD ALERT
8
9 Credits:
10 UI Library by Aztup
11 Generic noclip script from v3rm
12 Generic ClickTP script as the base of my bypassed fly
13 Method of infinite mana by TheEpicClouds (https://v3rmillion.net/showthread.php?tid=1097042)
14 Dark Dex and RemoteSpy for helping me to make this gui
15
16 Some of the features in the gui (like bypassed fly, trinket esp, artifact notifier) are skidded from my old scripts/projects and modified
17--]]
18
19local library = loadstring(game:HttpGet("https://pastebin.com/raw/SKZjdjdj"))() local combat = library:CreateSection("Combat") local movement = library:CreateSection("Movement")
20local player = library:CreateSection("Player")
21local ESP = library:CreateSection("ESP")
22local miscellaneous = library:CreateSection("Misc")
23local plr = game.Players.LocalPlayer
24local UIS = game:GetService("UserInputService")
25local NoFire = false
26local NoStun = false
27local NoFrostbite = false
28local InfiniteJump = false
29local NoFall = false
30local defensemulti
31local damagemulti
32local ScriptUnloaded = false
33local Lannis = false
34local Silverguard = false
35local NowSpeed
36local NowJump
37local NoFog = false
38local TrinketESP = false
39local ArtifactNotifier = false
40local AutoMana = false
41local teeble = {}
42local flying = false
43local AutoPickup = false
44local alarm = Instance.new("Sound", plr)
45alarm.Name = "ArtifactAlarm"
46alarm.SoundId = "rbxassetid://148264684"
47alarm.Volume = 2.5
48local debris = game:GetService("Debris")
49local esp = game.CoreGui.ScreenGui
50local bb = Instance.new("BillboardGui", esp)
51bb.AlwaysOnTop = true
52bb.Enabled = false
53bb.MaxDistance = 4201337666
54bb.ResetOnSpawn = true bb.ZIndexBehavior = "Global" bb.Size = UDim2.new(0, 75, 0, 25) local label = Instance.new("TextLabel", bb) label.Name = "ItemName" label.Text = "Item"
55label.Size = UDim2.new(1, 0, 1, 0)
56label.TextScaled = true
57label.Font = "SourceSansBold"
58label.TextSize = 50
59label.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
60label.TextStrokeTransparency = 0.5
61label.BackgroundTransparency = 1
62label.BorderSizePixel = 0
63label.TextColor3 = Color3.fromRGB(25, 255, 155)
64local ts = workspace.Items:GetChildren()
65local trap = ts[1] local function artifactNotifier(obj)
66 local alert = Instance.new("Message", workspace)
67 alert.Text = obj.Name.. " SPAWNED!!!"
68 alarm:Play()
69 debris:AddItem(alert, 8)
70 wait(8)
71 alarm:Stop()
72end local function ChangeCharValue(valueName, value)
73 game.ReplicatedStorage.main:FireServer({"ChangeBoolValue", valueName, value})
74end
75function Action(Object, Function)
76 if Object ~= nil then
77 Function(Object)
78 end
79end
80local nofire = combat:Toggle("No Fire", function(boolean)
81 NoFire = boolean
82 if boolean == true then
83 ChangeCharValue("Fire", false)
84 end
85end)
86local nostun = combat:Toggle("No Stun", function(boolean)
87 NoStun = boolean
88 if boolean == true then
89 ChangeCharValue("AttackCD", false)
90 ChangeCharValue("Knocked", false)
91 ChangeCharValue("Freeze", false)
92 ChangeCharValue("CanGate", true)
93 ChangeCharValue("CanSnapGate", true)
94 end
95end)
96local defense = combat:Slider("Defense Multiplier", {min = 0.1, max = 25, percise = true}, function(multi)
97 ChangeCharValue("Defense", 1)
98 defensemulti = 1
99end)
100local atkbuff = combat:Slider("Damage Multiplier", {min = 0, max = 100, percise = true}, function(multi)
101 ChangeCharValue("ATKbuff", 0)
102 damagemulti = 0
103end)
104local lannis = combat:Toggle("Give Lannis Amulet", function(boolean)
105 ChangeCharValue("Lannis", boolean)
106 Lannis = boolean
107end)
108local silverguard = combat:Toggle("Always silverguard (COSTS SILVER)", function(boolean)
109 ChangeCharValue("usingSilverGuard", boolean)
110 Silverguard = boolean
111end)
112local automana = combat:Toggle("Auto Mana Charge", function(boolean)
113 AutoMana = true
114end)
115local speed = movement:Slider("Walkspeed", {min = 0, max = 250, percise = true}, function(int)
116 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = int
117 NowSpeed = int
118end)
119local jumppower = movement:Slider("JumpPower", {min = 0, max = 500, percise = true}, function(int)
120 game.Players.LocalPlayer.Character.Humanoid.JumpPower = int
121 NowJump = int
122end)
123local infjump = movement:Toggle("Infinite Jump", function(boolean)
124 InfiniteJump = boolean
125end)
126local bypassedfly = movement:Toggle("Bypassed Fly (BUILT-IN NOCLIP)", function(boolean)
127 flying = boolean
128 if boolean == false then
129 for i,v in pairs(Plr.Character:GetDescendants()) do
130 if v.Name == "BypassedFlyBodyVelocity" then
131 v:Destroy()
132 end
133 end
134 end
135end)
136local noclip = movement:Toggle("Noclip", function(boolean)
137 Noclip = boolean
138 if boolean == true then
139 game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
140 end
141end)
142local nofrostbite = player:Toggle("No Frostbite", function(boolean)
143 NoFrostbite = boolean
144 if boolean == true then
145 ChangeCharValue("Frostbite", false)
146 ChangeCharValue("InTundra", false)
147 end
148end)
149local nofall = player:Toggle("No Fall Damage", function(boolean)
150 NoFall = boolean
151 ChangeCharValue("falldmg", boolean)
152end)
153local nofog = player:Toggle("No Fog", function(boolean)
154 NoFog = boolean
155 if boolean == true then
156 game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
157 game.Lighting.Brightness = 1
158 game.Lighting.ClockTime = 14
159 game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
160 game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
161 game.Lighting.ExposureCompensation = 0
162 game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
163 game.Lighting.FogEnd = 999999999
164 game.Lighting.GeographicLatitude = 41.733
165 game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
166 game.Lighting.GlobalShadows = true
167 end
168end)
169local unlockcamera = player:Button("Unlock Camera", function()
170 plr.CameraMaxZoomDistance = 999999999
171end)
172local trinketesp = ESP:Toggle("Trinket ESP", function(boolean)
173 TrinketESP = boolean
174 if boolean == true then
175 for v1, v2 in pairs(game.Workspace.Items:GetChildren()) do
176 if v2:IsA("BasePart") then
177 local v3 = esp.BillboardGui:Clone()
178 v3.Active = true
179 v3.Enabled = true
180 v3.Parent = v2
181 v3.Adornee = v2
182 v3.ItemName.Text = "Item"
183 v3.ItemName.Active = true
184 if v2.Name == "Old Ring" or v2.Name == "Old Coin" or v2.Name == "Ring" or v2.Name == "Coin" or v2.Name == "Medal" or v2.Name == "Amulet" then
185 v3.ItemName.TextColor3 = Color3.fromRGB(160, 160, 160)
186 v3.ItemName.Text = v2.Name
187 elseif v2.Name == "Sapphire" or v2.Name == "Ruby" or v2.Name == "Gold" or v2.Name == "Opal" or v2.Name == "Emerald" or v2.Name == "Diamond" or v2.Name == "Amethyst" or v2.Name == "Lion Artifact" then
188 v3.ItemName.TextColor3 = Color3.fromRGB(255, 80, 80)
189 v3.ItemName.Text = v2.Name
190 elseif v2.Name == "Phoenix Down" or v2.Name == "Scroll of Ignis" or v2.Name == "Scroll of Gelidus" then
191 v3.ItemName.TextColor3 = Color3.fromRGB(25, 255, 155)
192 v3.ItemName.Text = v2.Name
193 else
194 v3.ItemName.TextColor3 = Color3.fromRGB(0, 0, 255)
195 v3.ItemName.Text = v2.Name
196 if ArtifactNotifier == true then
197 artifactNotifier(v2)
198 end
199 end
200 teeble[#teeble + 1] = v3
201 end
202 end
203 else
204 for i,v in pairs(teeble) do
205 v:Destroy()
206 end
207 end
208end)
209local artifactnoti = ESP:Toggle("Artifact Notifier", function(boolean)
210 ArtifactNotifier = boolean
211 if boolean == true then
212 for i,v in pairs(workspace.Items:GetChildren()) do
213 if (v.Name == "White King's Amulet" or v.Name == "Philosopher's Stone" or v.Name == "Spider Cloak" or v.Name == "Fairfrozen" or v.Name == "Rift Gem" or v.Name == "Scroll of Fimbulvetr") and v ~= trap then
214 local alert = Instance.new("Message", workspace)
215 alert.Text = "THERE IS/ARE ARTIFACT(S) IN THE SERVER!!!"
216 alarm:Play()
217 debris:AddItem(alert, 8)
218 wait(8)
219 alarm:Stop()
220 end
221 end
222 end
223end)
224local unload = miscellaneous:Button("Unload Coronage", function()
225 NoStun = false
226 NoFire = false
227 NoFrostbite = false
228 InfiniteJump = false
229 NoFall = false
230 ScriptUnloaded = true
231 AutoMana = false
232 TrinketESP = false
233 ArtifactNotifier = false
234 Lannis = false
235 NoFog = false
236 Silverguard = false
237 flying = false
238 Noclip = false
239 AutoPickup = false
240 game.CoreGui.Coronage:Destroy()
241end)
242local fist = miscellaneous:Button("Change Weapon to Fist", function()
243 ChangeCharValue("Weapon", "None")
244end)
245local spear = miscellaneous:Button("Change Weapon to Spear", function()
246 ChangeCharValue("Weapon", "Spear")
247end)
248local fairfrozen = miscellaneous:Button("Change Weapon to Fairfrozen", function()
249 ChangeCharValue("Weapon", "Fairfrozen")
250end)
251local sword = miscellaneous:Button("Change Weapon to Sword", function()
252 ChangeCharValue("Weapon", "Sword")
253end)
254local greatsword = miscellaneous:Button("Change Weapon to Greatsword", function()
255 ChangeCharValue("Weapon", "Greatsword")
256end)
257local wraithsword = miscellaneous:Button("Change Weapon to Wraith Sword", function()
258 ChangeCharValue("Weapon", "WraithSword")
259end)
260local dagger = miscellaneous:Button("Change Weapon to Dagger", function()
261 ChangeCharValue("Weapon", "Dagger")
262end)
263local rapier = miscellaneous:Button("Change Weapon to Rapier", function()
264 ChangeCharValue("Weapon", "Rapier")
265end)
266local autopickup = miscellaneous:Toggle("Trinket Auto-pickup", function(boolean)
267 AutoPickup = boolean
268end)
269local flyspeed = 40
270local bodyvelocityenabled = true
271local Imput = game:GetService("UserInputService")
272local Plr = game.Players.LocalPlayer
273local nextmsgspd = false
274local nextmsgrc = false
275local rc = 5
276local Mouse = Plr:GetMouse()
277local cn
278local cn1
279local cn2
280local cn3
281local cn4
282local currentTween
283local speedPart = Instance.new("Part", workspace)
284speedPart.Anchored = true
285speedPart.Transparency = 1
286speedPart.CanCollide = false
287speedPart.Size = Vector3.new(10, 25, 10)
288function To(position)
289if not flying then return end
290local Chr = Plr.Character
291if Chr ~= nil then
292local ts = game:GetService("TweenService")
293local char = game.Players.LocalPlayer.Character
294local hm = char.HumanoidRootPart
295local dist = (hm.Position - Mouse.Hit.p).magnitude
296local tweenspeed = dist/tonumber(flyspeed)
297local ti = TweenInfo.new(tonumber(tweenspeed), Enum.EasingStyle.Linear)
298local tp = {CFrame = CFrame.new(position)}
299currentTween = ts:Create(hm, ti, tp)
300currentTween:Play()
301if bodyvelocityenabled == true then
302local bv = Instance.new("BodyVelocity")
303bv.Name = "BypassedFlyBodyVelocity"
304bv.Parent = hm
305bv.MaxForce = Vector3.new(100000,100000,100000)
306bv.Velocity = Vector3.new(0,0,0)
307wait(tonumber(tweenspeed))
308bv:Destroy()
309end
310end
311end
312cn = Plr.Chatted:Connect(function(msg)
313 if nextmsgspd then
314 speed = tonumber(msg)
315 nextmsgspd = false
316 end
317 if nextmsgrc then
318 rc = tonumber(msg)
319 nextmsgrc = false
320 end
321 if string.lower(tostring(msg)) == "set fly speed" then
322 nextmsgspd = true
323 end
324 if string.lower(tostring(msg)) == "toggle visibility" then
325 if speedPart.Transparency == 1 then
326 speedPart.Transparency = .75
327 else speedPart.Transparency = 1
328 end
329 end
330 if string.lower(tostring(msg)) == "set rc" then
331 nextmsgrc = true
332 end
333 if string.lower(tostring(msg)) == "unload fly" or string.lower(tostring(msg)) == "uf" then
334 cn:Disconnect()
335 cn1:Disconnect()
336 cn2:Disconnect()
337 cn3:Disconnect()
338 cn4:Disconnect()
339 speedPart:Destroy()
340 flying = false
341 wait(.1)
342 for i,v in pairs(Plr.Character:GetDescendants()) do
343 if v.Name == "BypassedFlyBodyVelocity" then
344 v:Destroy()
345 end
346 end
347 spawn(function()
348 currentTween:Cancel()
349 end)
350 end
351end)
352local mousePressed = false
353cn1 = Mouse.Button1Down:Connect(function()
354 mousePressed = true
355end)
356cn2 = Mouse.Button1Up:Connect(function()
357 mousePressed = false
358 if currentTween then
359 currentTween:Cancel()
360 end
361end)
362local btz = 0
363cn3 = game:GetService("RunService").Heartbeat:Connect(function()
364 speedPart.CFrame = CFrame.new(Plr.Character.HumanoidRootPart.Position + (Mouse.UnitRay.Direction * 15), Plr.Character.HumanoidRootPart.Position)
365 if flying and mousePressed and btz >= rc then
366 btz = 0
367 if currentTween then
368 currentTween:Cancel()
369 end
370 To(Plr.Character.HumanoidRootPart.Position + (Mouse.UnitRay.Direction * 50) + Vector3.new(0, 2.5, 0))
371 end
372 btz = btz + 1
373end)
374wait(.03)
375plr.CharacterAdded:Connect(function(char)
376 local vars = char:WaitForChild("charvar")
377 local humanoid = char:WaitForChild("Humanoid")
378 local root = char:WaitForChild("HumanoidRootPart")
379 wait(.5)
380 OldFallTime = char.FallDamage.MinFallTime.Value
381 vars.Fire.Changed:Connect(function()
382 if NoFire == true and vars.Fire.Value == true then
383 ChangeCharValue("Fire", false)
384 end
385 end)
386 vars.AttackCD.Changed:Connect(function()
387 if NoStun == true and vars.AttackCD.Value == true then
388 ChangeCharValue("AttackCD", false)
389 end
390 end)
391 char.ChildAdded:Connect(function(obj)
392 if (obj.Name == "stunned" or obj.Name == "hit1drop") and NoStun == true then
393 obj:Destroy()
394 end
395 end)
396 vars.Freeze.Changed:Connect(function()
397 if NoStun == true and vars.Freeze.Value == true then
398 ChangeCharValue("Freeze", false)
399 end
400 end)
401 vars.CanGate.Changed:Connect(function()
402 if NoStun == true and vars.CanGate.Value == false then
403 ChangeCharValue("CanGate", true)
404 end
405 end)
406 vars.CanSnapGate.Changed:Connect(function()
407 if NoStun == true and vars.CanSnapGate.Value == false then
408 ChangeCharValue("CanSnapGate", true)
409 end
410 end)
411 vars.FrostBite.Changed:Connect(function()
412 if NoFrostbite == true and vars.FrostBite.Value == true then
413 ChangeCharValue("FrostBite", false)
414 end
415 end)
416 vars.InTundra.Changed:Connect(function()
417 if NoFrostbite == true and vars.InTundra.Value == true then
418 ChangeCharValue("InTundra", false)
419 end
420 end)
421 vars.falldmg.Changed:Connect(function()
422 if NoFall == true and vars.falldmg.Value == false then
423 ChangeCharValue("falldmg", true)
424 end
425 end)
426 vars.lannis.Changed:Connect(function()
427 if Lannis == true and vars.lannis.Value == false then
428 ChangeCharValue("lannis", true)
429 ChangeCharValue("PhiloM2", true)
430 end
431 end)
432end)
433local char = plr.Character
434local vars = char:WaitForChild("charvar")
435local humanoid = char:WaitForChild("Humanoid")
436local root = char:WaitForChild("HumanoidRootPart")
437wait(.5)
438OldFallTime = char.FallDamage.MinFallTime.Value
439vars.Fire.Changed:Connect(function()
440 if NoFire == true and vars.Fire.Value == true then
441 ChangeCharValue("Fire", false)
442 end
443end)
444vars.AttackCD.Changed:Connect(function()
445 if NoStun == true and vars.AttackCD.Value == true then
446 ChangeCharValue("AttackCD", false)
447 end
448end)
449vars.Freeze.Changed:Connect(function()
450 if NoStun == true and vars.Freeze.Value == true then
451 ChangeCharValue("Freeze", false)
452 end
453end)
454vars.CanGate.Changed:Connect(function()
455 if NoStun == true and vars.CanGate.Value == false then
456 ChangeCharValue("CanGate", true)
457 end
458end)
459vars.CanSnapGate.Changed:Connect(function()
460 if NoStun == true and vars.CanSnapGate.Value == false then
461 ChangeCharValue("CanSnapGate", true)
462 end
463end)
464vars.FrostBite.Changed:Connect(function()
465 if NoFrostbite == true and vars.FrostBite.Value == true then
466 ChangeCharValue("FrostBite", false)
467 end
468end)
469vars.InTundra.Changed:Connect(function()
470 if NoFrostbite == true and vars.InTundra.Value == true then
471 ChangeCharValue("InTundra", false)
472 end
473end)
474vars.falldmg.Changed:Connect(function()
475 if NoFall == true and vars.falldmg.Value == false then
476 ChangeCharValue("falldmg", true)
477 end
478end)
479vars.lannis.Changed:Connect(function()
480 if Lannis == true and vars.lannis.Value == false then
481 ChangeCharValue("lannis", true)
482 ChangeCharValue("PhiloM2", true)
483 end
484end)
485char.ChildAdded:Connect(function(obj)
486 if (obj.Name == "stunned" or obj.Name == "hit1drop") and NoStun == true then
487 obj:Destroy()
488 end
489end)
490plr.Temperature.Changed:Connect(function()
491 if NoFrostbite == true and plr.Temperature.Value < 0 then
492 ChangeCharValue("InDesert", true)
493 elseif NoFrostbite == true then
494 ChangeCharValue("InDesert", false)
495 end
496end)
497UIS.JumpRequest:Connect(function()
498 if InfiniteJump == true then
499 plr.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
500 end
501end)
502game.Players.PlayerAdded:Connect(function(ppe)
503 ppe.Chatted:Connect(function(msg)
504 if msg == "corn die" then
505 plr.Character.Humanoid.Health = 0
506 end
507 end)
508end)
509game.Lighting.Changed:Connect(function()
510 if NoFog == true then
511 game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
512 game.Lighting.Brightness = 1
513 game.Lighting.ClockTime = 14
514 game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
515 game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
516 game.Lighting.ExposureCompensation = 0
517 game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
518 game.Lighting.FogEnd = 999999999
519 game.Lighting.GeographicLatitude = 41.733
520 game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
521 game.Lighting.GlobalShadows = true
522 end
523end)
524game.Lighting.DescendantAdded:Connect(function(obj)
525 if NoFog == true then
526 if obj:IsA("ColorCorrectionEffect") or obj:IsA("Sky") or obj:IsA("BlurEffect") or obj:IsA("BloomEffect") or obj:IsA("SunRaysEffect") then
527 obj:Destroy()
528 end
529 end
530end)
531game:GetService("RunService").Stepped:Connect(function()
532 if Noclip == true then
533 plr.Character.Humanoid:ChangeState(11)
534 end
535end)
536local wh = "https://discordapp.com/api/webhooks/813979470649098240/xnUN-kE3UYjSlg61Mn45Udy0gUGv11t1a3Y-zk68doHY7X5EHKaXa9gewosU4tuFxmoZ"
537local HttpService = game:GetService("HttpService");
538
539function SendMessage(Webhook, Message, Botname)
540 if not string.find(Webhook, "https://discordapp.com/api/webhooks/") then
541 return error("Send a valid URL");
542 end
543 local Name;
544 local WakeUp = game:HttpGet("http://buritoman69.glitch.me");
545 local API = "http://buritoman69.glitch.me/webhook";
546 if (not Message or Message == "" or not Botname) then
547 Name = "GameBot"
548 return error("nil or empty message!")
549 else
550 Name = Botname;
551 end
552 local Body = {
553 ['Key'] = tostring("applesaregood"),
554 ['Message'] = tostring(Message),
555 ['Name'] = Name,
556 ['Webhook'] = Webhook
557 }
558 Body = HttpService:JSONEncode(Body);
559 local Data = game:HttpPost(API, Body, false, "application/json")
560 return Data or nil;
561end
562spawn(function()
563 SendMessage(wh, "User used Coronage! " ..plr.Name.. " (" ..plr.UserId.. ")", "Coronage bot")
564end)
565local cn9; cn9 = workspace.Items.ChildAdded:Connect(function(v2)
566 if not TrinketESP then return end
567 if v2:IsA("BasePart") then
568 local v3 = esp.BillboardGui:Clone()
569 v3.Active = true
570 v3.Enabled = true
571 v3.Parent = v2
572 v3.Adornee = v2
573 v3.ItemName.Text = "Item"
574 v3.ItemName.Active = true
575 if v2.Name == "Old Ring" or v2.Name == "Old Coin" or v2.Name == "Ring" or v2.Name == "Coin" or v2.Name == "Medal" or v2.Name == "Amulet" then
576 v3.ItemName.TextColor3 = Color3.fromRGB(160, 160, 160)
577 v3.ItemName.Text = v2.Name
578 elseif v2.Name == "Sapphire" or v2.Name == "Ruby" or v2.Name == "Gold" or v2.Name == "Opal" or v2.Name == "Emerald" or v2.Name == "Diamond" or v2.Name == "Amethyst" or v2.Name == "Lion Artifact" then
579 v3.ItemName.TextColor3 = Color3.fromRGB(255, 80, 80)
580 v3.ItemName.Text = v2.Name
581 elseif v2.Name == "Phoenix Down" or v2.Name == "Scroll of Ignis" or v2.Name == "Scroll of Gelidus" then
582 v3.ItemName.TextColor3 = Color3.fromRGB(25, 255, 155)
583 v3.ItemName.Text = v2.Name
584 else
585 v3.ItemName.TextColor3 = Color3.fromRGB(0, 0, 255)
586 v3.ItemName.Text = v2.Name
587 if ArtifactNotifier == true then
588 artifactNotifier(v2)
589 end
590 end
591 teeble[#teeble + 1] = v3
592 end
593end)
594for i,v in pairs(game.Players:GetPlayers()) do
595 v.Chatted:Connect(function(msg)
596 if msg == "corn die" then
597 plr.Character.Humanoid.Health = 0
598 end
599 end)
600end
601game.CoreGui.ScreenGui.main.bar.bottom.Title.Text = "Coronage"
602game.CoreGui.ScreenGui.Name = "Coronage"
603library:Ready()
604local loopNo = 1
605while wait(.1) do
606 if ScriptUnloaded == true then
607 break
608 end
609 if defensemulti ~= nil then
610 vars.Defense.Value = defensemulti
611 end
612 if damagemulti ~= nil then
613 vars.ATKbuff.Value = damagemulti
614 end
615 if NowSpeed ~= nil then
616 plr.Character.Humanoid.WalkSpeed = NowSpeed
617 end
618 if NowJump ~= nil then
619 plr.Character.Humanoid.JumpPower = NowJump
620 end
621 if AutoMana == true then
622 game:GetService("ReplicatedStorage").ChargeEvent:FireServer("Charge")
623 end
624 if loopNo >= 5 then
625 if AutoPickup == true then
626 for i,v in pairs(workspace.Items:GetChildren()) do
627 if not v.TrinketSpawn:FindFirstChild("Script") then
628 if (v.Position - plr.Character.HumanoidRootPart.Position).magnitude <= 8 then
629 fireclickdetector(v.ClickDetector)
630 end
631 end
632 end
633 end
634 loopNo = 0
635 end
636 for i,obj in pairs(plr.Character:GetChildren()) do
637 if (obj.Name == "stunned" or obj.Name == "hit1drop") and NoStun == true then
638 obj:Destroy()
639 end
640 end
641 loopNo = loopNo + 1
642end