Advertisement
JEXBLUK

DEMON IS V3?

May 29th, 2023 (edited)
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.61 KB | Writing | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification", {
  2.  
  3. Title = "DEMONIS V3";
  4.  
  5. Text = "Demonis Has Loaded";
  6.  
  7. Icon = "rbxthumb://type=Asset&id=13797050647&w=150&h=150"})
  8.  
  9. Duration = 16;
  10.  
  11. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  12.  
  13. local Window = Library.CreateLib("DEMONIS", "BloodTheme")
  14.  
  15. local Tab = Window:NewTab("Main")
  16.  
  17. local Section = Tab:NewSection("Main")
  18.  
  19. Section:NewButton("Fly", "A simple fly command, press 'E' to toggle.", function()
  20.  
  21. loadstring(game:HttpGet("https://raw.githubusercontent.com/TR011F4C3/PANDA/main/scripts/fly.lua", true))()
  22.  
  23. end)
  24.  
  25. Section:NewButton("Noclip", "A simple noclip command, press 'V' to toggle.", function()
  26.  
  27. noclip = false
  28.  
  29. game:GetService('RunService').Stepped:connect(function()
  30.  
  31. if noclip then
  32.  
  33. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  34.  
  35. end
  36.  
  37. end)
  38.  
  39. plr = game.Players.LocalPlayer
  40.  
  41. mouse = plr:GetMouse()
  42.  
  43. mouse.KeyDown:connect(function(key)
  44.  
  45. if key == "v" then
  46.  
  47. noclip = not noclip
  48.  
  49. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  50.  
  51. end
  52.  
  53. end)
  54.  
  55. end)
  56.  
  57. Section:NewButton("ClickTP", "Click Teleportation.", function()
  58.  
  59. mouse = game.Players.LocalPlayer:GetMouse()
  60.  
  61. tool = Instance.new("Tool")
  62.  
  63. tool.RequiresHandle = false
  64.  
  65. tool.Name = "ClickTP"
  66.  
  67. tool.Activated:connect(function()
  68.  
  69. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  70.  
  71. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  72.  
  73. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  74.  
  75. end)
  76.  
  77. tool.Parent = game.Players.LocalPlayer.Backpack
  78.  
  79. end)
  80.  
  81. Section:NewToggle("Infinite Jump", "A simple Infinite Jump script.", function(state)
  82.  
  83. if state then
  84.  
  85. _G.infinjump = true
  86.  
  87. local Player = game:GetService("Players").LocalPlayer
  88.  
  89. local Mouse = Player:GetMouse()
  90.  
  91. Mouse.KeyDown:connect(function(k)
  92.  
  93. if _G.infinjump then
  94.  
  95. if k:byte() == 32 then
  96.  
  97. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  98.  
  99. Humanoid:ChangeState("Jumping")
  100.  
  101. wait(0.1)
  102.  
  103. Humanoid:ChangeState("Seated")
  104.  
  105. end
  106.  
  107. end
  108.  
  109. end)
  110.  
  111. local Player = game:GetService("Players").LocalPlayer
  112.  
  113. local Mouse = Player:GetMouse()
  114.  
  115. else
  116.  
  117. if _G.infinjump == true then
  118.  
  119. _G.infinjump = false
  120.  
  121. else
  122.  
  123. _G.infinjump = true
  124.  
  125. end
  126.  
  127. end
  128.  
  129. end)
  130.  
  131. Section:NewSlider("Walk Speed", "A simple Walk Speed slider.", 500, 0, function(WalkScript) -- 500 (MaxValue) | 0 (MinValue)
  132.  
  133. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = WalkScript
  134.  
  135. end)
  136.  
  137. Section:NewSlider("Jump Power", "A simple Jump Power slider.", 500, 0, function(JumpScript) -- 500 (MaxValue) | 0 (MinValue)
  138.  
  139. game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumpScript
  140.  
  141. end)
  142.  
  143. Section:NewTextBox("Goto", "Go to a player.", function(PlayerTeleportName)
  144.  
  145. local playerone = game.Players.LocalPlayer.Character
  146.  
  147. local playertwo = game.Workspace:FindFirstChild(PlayerTeleportName)
  148.  
  149. playerone.HumanoidRootPart.CFrame = playertwo.HumanoidRootPart.CFrame * CFrame.new(0,2,0)
  150.  
  151. end)
  152.  
  153. local Tab = Window:NewTab("Games")
  154.  
  155. local Section = Tab:NewSection("Rake")
  156.  
  157. Section:NewButton("Infinite Yield", "Launches Infinite Yield.", function()
  158.  
  159. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source", true))()
  160.  
  161. end)
  162.  
  163. Section:NewButton("Fullbright", "Getting see", function()
  164.  
  165. local Light = game:GetService("Lighting")
  166.  
  167. function dofullbright()
  168.  
  169. Light.Ambient = Color3.new(1, 1, 1)
  170.  
  171. Light.ColorShift_Bottom = Color3.new(1, 1, 1)
  172.  
  173. Light.ColorShift_Top = Color3.new(1, 1, 1)
  174.  
  175. end
  176.  
  177. dofullbright()
  178.  
  179. Light.LightingChanged:Connect(dofullbright)
  180.  
  181. end)
  182.  
  183. Section:NewButton("PLAYERS ESP", "esp", function()
  184.  
  185. loadstring(game:HttpGet("https://raw.githubusercontent.com/JEXBLUK/JEXBLUK-TEAM/main/ESP%20PLAYERS"))()
  186.  
  187. end)
  188.  
  189. Section:NewButton("BigZoom", "Changes MaxZoom To 50", function()
  190. Game.Players.LocalPlayer.CameraMaxZoomDistance = 50
  191. end)
  192.  
  193.  
  194. local Section = Tab:NewSection("Ability wars")
  195.  
  196. Section:NewButton("Ability wars1", "Discover more things", function()
  197. loadstring(game:HttpGet("https://paste.ee/r/Wo5Kj"))()
  198. end)
  199.  
  200. local Section = Tab:NewSection("Ro-Ghoul")
  201.  
  202. Section:NewButton("Ability wars1", "Discover more things", function()
  203. loadstring(game:HttpGet"https://raw.githubusercontent.com/xQuartyx/DonateMe/main/ScriptLoader")()
  204. end)
  205.  
  206. local Tab = Window:NewTab("Support Guis")
  207.  
  208. local Section = Tab:NewSection("Guis")
  209.  
  210. Section:NewButton("Harshtech", "Discover more things", function()
  211.  
  212. loadstring(game:HttpGet("https://raw.githubusercontent.com/YellowGreg/Loadstring/main/HarshTechV7.5-Pc-Original.lua"))()
  213.  
  214. end)
Tags: :D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement