TheRobloxPlayer2509

Coronage V1.1 (unpatched + update)

Feb 23rd, 2021 (edited)
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 22.60 KB | None | 0 0
  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.  
  19. local library = loadstring(game:HttpGet("https://pastebin.com/raw/SKZjdjdj"))() local combat = library:CreateSection("Combat") local movement = library:CreateSection("Movement")
  20. local player = library:CreateSection("Player")
  21. local ESP = library:CreateSection("ESP")
  22. local miscellaneous = library:CreateSection("Misc")
  23. local plr = game.Players.LocalPlayer
  24. local UIS = game:GetService("UserInputService")
  25. local NoFire = false
  26. local NoStun = false
  27. local NoFrostbite = false
  28. local InfiniteJump = false
  29. local NoFall = false
  30. local defensemulti
  31. local damagemulti
  32. local ScriptUnloaded = false
  33. local Lannis = false
  34. local Silverguard = false
  35. local NowSpeed
  36. local NowJump
  37. local NoFog = false
  38. local TrinketESP = false
  39. local ArtifactNotifier = false
  40. local AutoMana = false
  41. local teeble = {}
  42. local flying = false
  43. local AutoPickup = false
  44. local alarm = Instance.new("Sound", plr)
  45. alarm.Name = "ArtifactAlarm"
  46. alarm.SoundId = "rbxassetid://148264684"
  47. alarm.Volume = 2.5
  48. local debris = game:GetService("Debris")
  49. local esp = game.CoreGui.ScreenGui
  50. local bb = Instance.new("BillboardGui", esp)
  51. bb.AlwaysOnTop = true
  52. bb.Enabled = false
  53. bb.MaxDistance = 4201337666
  54. bb.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"
  55. label.Size = UDim2.new(1, 0, 1, 0)
  56. label.TextScaled = true
  57. label.Font = "SourceSansBold"
  58. label.TextSize = 50
  59. label.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  60. label.TextStrokeTransparency = 0.5
  61. label.BackgroundTransparency = 1
  62. label.BorderSizePixel = 0
  63. label.TextColor3 = Color3.fromRGB(25, 255, 155)
  64. local ts = workspace.Items:GetChildren()
  65. local 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()
  72. end local function ChangeCharValue(valueName, value)
  73.     game.ReplicatedStorage.main:FireServer({"ChangeBoolValue", valueName, value})
  74. end
  75. function Action(Object, Function)
  76.     if Object ~= nil then
  77.         Function(Object)
  78.     end
  79. end
  80. local nofire = combat:Toggle("No Fire", function(boolean)
  81.     NoFire = boolean
  82.     if boolean == true then
  83.         ChangeCharValue("Fire", false)
  84.     end
  85. end)
  86. local 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
  95. end)
  96. local defense = combat:Slider("Defense Multiplier", {min = 0.1, max = 25, percise = true}, function(multi)
  97.     ChangeCharValue("Defense", 1)
  98.     defensemulti = 1
  99. end)
  100. local atkbuff = combat:Slider("Damage Multiplier", {min = 0, max = 100, percise = true}, function(multi)
  101.     ChangeCharValue("ATKbuff", 0)
  102.     damagemulti = 0
  103. end)
  104. local lannis = combat:Toggle("Give Lannis Amulet", function(boolean)
  105.     ChangeCharValue("Lannis", boolean)
  106.     Lannis = boolean
  107. end)
  108. local silverguard = combat:Toggle("Always silverguard (COSTS SILVER)", function(boolean)
  109.     ChangeCharValue("usingSilverGuard", boolean)
  110.     Silverguard = boolean
  111. end)
  112. local automana = combat:Toggle("Auto Mana Charge", function(boolean)
  113.     AutoMana = true
  114. end)
  115. local speed = movement:Slider("Walkspeed", {min = 0, max = 250, percise = true}, function(int)
  116.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = int
  117.     NowSpeed = int
  118. end)
  119. local jumppower = movement:Slider("JumpPower", {min = 0, max = 500, percise = true}, function(int)
  120.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = int
  121.     NowJump = int
  122. end)
  123. local infjump = movement:Toggle("Infinite Jump", function(boolean)
  124.     InfiniteJump = boolean
  125. end)
  126. local 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
  135. end)
  136. local noclip = movement:Toggle("Noclip", function(boolean)
  137.     Noclip = boolean
  138.     if boolean == true then
  139.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  140.     end
  141. end)
  142. local 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
  148. end)
  149. local nofall = player:Toggle("No Fall Damage", function(boolean)
  150.     NoFall = boolean
  151.     ChangeCharValue("falldmg", boolean)
  152. end)
  153. local 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
  168. end)
  169. local unlockcamera = player:Button("Unlock Camera", function()
  170.     plr.CameraMaxZoomDistance = 999999999
  171. end)
  172. local 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
  208. end)
  209. local 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
  223. end)
  224. local 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()
  241. end)
  242. local fist = miscellaneous:Button("Change Weapon to Fist", function()
  243.     ChangeCharValue("Weapon", "None")
  244. end)
  245. local spear = miscellaneous:Button("Change Weapon to Spear", function()
  246.     ChangeCharValue("Weapon", "Spear")
  247. end)
  248. local fairfrozen = miscellaneous:Button("Change Weapon to Fairfrozen", function()
  249.     ChangeCharValue("Weapon", "Fairfrozen")
  250. end)
  251. local sword = miscellaneous:Button("Change Weapon to Sword", function()
  252.     ChangeCharValue("Weapon", "Sword")
  253. end)
  254. local greatsword = miscellaneous:Button("Change Weapon to Greatsword", function()
  255.     ChangeCharValue("Weapon", "Greatsword")
  256. end)
  257. local wraithsword = miscellaneous:Button("Change Weapon to Wraith Sword", function()
  258.     ChangeCharValue("Weapon", "WraithSword")
  259. end)
  260. local dagger = miscellaneous:Button("Change Weapon to Dagger", function()
  261.     ChangeCharValue("Weapon", "Dagger")
  262. end)
  263. local rapier = miscellaneous:Button("Change Weapon to Rapier", function()
  264.     ChangeCharValue("Weapon", "Rapier")
  265. end)
  266. local autopickup = miscellaneous:Toggle("Trinket Auto-pickup", function(boolean)
  267.     AutoPickup = boolean
  268. end)
  269. local flyspeed = 40
  270. local bodyvelocityenabled = true
  271. local Imput = game:GetService("UserInputService")
  272. local Plr = game.Players.LocalPlayer
  273. local nextmsgspd = false
  274. local nextmsgrc = false
  275. local rc = 5
  276. local Mouse = Plr:GetMouse()
  277. local cn
  278. local cn1
  279. local cn2
  280. local cn3
  281. local cn4
  282. local currentTween
  283. local speedPart = Instance.new("Part", workspace)
  284. speedPart.Anchored = true
  285. speedPart.Transparency = 1
  286. speedPart.CanCollide = false
  287. speedPart.Size = Vector3.new(10, 25, 10)
  288. function To(position)
  289. if not flying then return end
  290. local Chr = Plr.Character
  291. if Chr ~= nil then
  292. local ts = game:GetService("TweenService")
  293. local char = game.Players.LocalPlayer.Character
  294. local hm = char.HumanoidRootPart
  295. local dist = (hm.Position - Mouse.Hit.p).magnitude
  296. local tweenspeed = dist/tonumber(flyspeed)
  297. local ti = TweenInfo.new(tonumber(tweenspeed), Enum.EasingStyle.Linear)
  298. local tp = {CFrame = CFrame.new(position)}
  299. currentTween = ts:Create(hm, ti, tp)
  300. currentTween:Play()
  301. if bodyvelocityenabled == true then
  302. local bv = Instance.new("BodyVelocity")
  303. bv.Name = "BypassedFlyBodyVelocity"
  304. bv.Parent = hm
  305. bv.MaxForce = Vector3.new(100000,100000,100000)
  306. bv.Velocity = Vector3.new(0,0,0)
  307. wait(tonumber(tweenspeed))
  308. bv:Destroy()
  309. end
  310. end
  311. end
  312. cn = 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
  351. end)
  352. local mousePressed = false
  353. cn1 = Mouse.Button1Down:Connect(function()
  354.     mousePressed = true
  355. end)
  356. cn2 = Mouse.Button1Up:Connect(function()
  357.     mousePressed = false
  358.     if currentTween then
  359.         currentTween:Cancel()
  360.     end
  361. end)
  362. local btz = 0
  363. cn3 = 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
  373. end)
  374. wait(.03)
  375. plr.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)
  432. end)
  433. local char = plr.Character
  434. local vars = char:WaitForChild("charvar")
  435. local humanoid = char:WaitForChild("Humanoid")
  436. local root = char:WaitForChild("HumanoidRootPart")
  437. wait(.5)
  438. OldFallTime = char.FallDamage.MinFallTime.Value
  439. vars.Fire.Changed:Connect(function()
  440.     if NoFire == true and vars.Fire.Value == true then
  441.         ChangeCharValue("Fire", false)
  442.     end
  443. end)
  444. vars.AttackCD.Changed:Connect(function()
  445.     if NoStun == true and vars.AttackCD.Value == true then
  446.         ChangeCharValue("AttackCD", false)
  447.     end
  448. end)
  449. vars.Freeze.Changed:Connect(function()
  450.     if NoStun == true and vars.Freeze.Value == true then
  451.         ChangeCharValue("Freeze", false)
  452.     end
  453. end)
  454. vars.CanGate.Changed:Connect(function()
  455.     if NoStun == true and vars.CanGate.Value == false then
  456.         ChangeCharValue("CanGate", true)
  457.     end
  458. end)
  459. vars.CanSnapGate.Changed:Connect(function()
  460.     if NoStun == true and vars.CanSnapGate.Value == false then
  461.         ChangeCharValue("CanSnapGate", true)
  462.     end
  463. end)
  464. vars.FrostBite.Changed:Connect(function()
  465.     if NoFrostbite == true and vars.FrostBite.Value == true then
  466.         ChangeCharValue("FrostBite", false)
  467.     end
  468. end)
  469. vars.InTundra.Changed:Connect(function()
  470.     if NoFrostbite == true and vars.InTundra.Value == true then
  471.         ChangeCharValue("InTundra", false)
  472.     end
  473. end)
  474. vars.falldmg.Changed:Connect(function()
  475.     if NoFall == true and vars.falldmg.Value == false then
  476.         ChangeCharValue("falldmg", true)
  477.     end
  478. end)
  479. vars.lannis.Changed:Connect(function()
  480.     if Lannis == true and vars.lannis.Value == false then
  481.         ChangeCharValue("lannis", true)
  482.         ChangeCharValue("PhiloM2", true)
  483.     end
  484. end)
  485. char.ChildAdded:Connect(function(obj)
  486.     if (obj.Name == "stunned" or obj.Name == "hit1drop") and NoStun == true then
  487.         obj:Destroy()
  488.     end
  489. end)
  490. plr.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
  496. end)
  497. UIS.JumpRequest:Connect(function()
  498.     if InfiniteJump == true then
  499.         plr.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
  500.     end
  501. end)
  502. game.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)
  508. end)
  509. game.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
  523. end)
  524. game.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
  530. end)
  531. game:GetService("RunService").Stepped:Connect(function()
  532.     if Noclip == true then
  533.         plr.Character.Humanoid:ChangeState(11)
  534.     end
  535. end)
  536. local wh = "https://discordapp.com/api/webhooks/813979470649098240/xnUN-kE3UYjSlg61Mn45Udy0gUGv11t1a3Y-zk68doHY7X5EHKaXa9gewosU4tuFxmoZ"
  537. local HttpService = game:GetService("HttpService");
  538.  
  539. function 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;
  561. end
  562. spawn(function()
  563.     SendMessage(wh, "User used Coronage! " ..plr.Name.. " (" ..plr.UserId.. ")", "Coronage bot")
  564. end)
  565. local 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
  593. end)
  594. for 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)
  600. end
  601. game.CoreGui.ScreenGui.main.bar.bottom.Title.Text = "Coronage"
  602. game.CoreGui.ScreenGui.Name = "Coronage"
  603. library:Ready()
  604. local loopNo = 1
  605. while 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
  642. end
Add Comment
Please, Sign In to add comment