Advertisement
nick_exe_

Lunar // KRNL Injection

Sep 28th, 2022
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | None | 0 0
  1. local LunarKrnlAutoExecute = Instance.new("ScreenGui")
  2. local MainFrame = Instance.new("Frame")
  3. local LunarLogo = Instance.new("ImageLabel")
  4. local KrnlLogo = Instance.new("ImageLabel")
  5. local InjectedText = Instance.new("TextLabel")
  6. local outline = Instance.new("UIStroke")
  7.  
  8. LunarKrnlAutoExecute.Name = "LunarKrnlAutoExecute"
  9. LunarKrnlAutoExecute.Parent = game.CoreGui
  10. LunarKrnlAutoExecute.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11. LunarKrnlAutoExecute.IgnoreGuiInset = true
  12. LunarKrnlAutoExecute.ResetOnSpawn = false
  13.  
  14. MainFrame.Name = "MainFrame"
  15. MainFrame.Parent = LunarKrnlAutoExecute
  16. MainFrame.BackgroundColor3 = Color3.fromRGB(170, 221, 255)
  17. MainFrame.BackgroundTransparency = 1.000
  18. MainFrame.Size = UDim2.new(1, 0, 1, 0)
  19.  
  20. LunarLogo.Name = "LunarLogo"
  21. LunarLogo.Parent = MainFrame
  22. LunarLogo.AnchorPoint = Vector2.new(0.5, 0.5)
  23. LunarLogo.BackgroundColor3 = Color3.fromRGB(170, 221, 255)
  24. LunarLogo.BackgroundTransparency = 1.000
  25. LunarLogo.Position = UDim2.new(0.5, 0, 0.5, 0)
  26. LunarLogo.Size = UDim2.new(0.600000024, 0, 0.600000024, 0)
  27. LunarLogo.Image = "rbxassetid://11106095943"
  28. LunarLogo.ImageTransparency = 1.000
  29. LunarLogo.ScaleType = Enum.ScaleType.Fit
  30.  
  31. KrnlLogo.Name = "KrnlLogo"
  32. KrnlLogo.Parent = MainFrame
  33. KrnlLogo.AnchorPoint = Vector2.new(0.5, 0.5)
  34. KrnlLogo.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  35. KrnlLogo.BackgroundTransparency = 1.000
  36. KrnlLogo.Position = UDim2.new(0.5, 0, 0.5, 0)
  37. KrnlLogo.Size = UDim2.new(0.600000024, 0, 0.600000024, 0)
  38. KrnlLogo.Image = "rbxassetid://11106155401"
  39. KrnlLogo.ImageTransparency = 1.000
  40. KrnlLogo.ScaleType = Enum.ScaleType.Fit
  41.  
  42. InjectedText.Name = "InjectedText"
  43. InjectedText.Parent = MainFrame
  44. InjectedText.AnchorPoint = Vector2.new(0.5, 0)
  45. InjectedText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  46. InjectedText.BackgroundTransparency = 1.000
  47. InjectedText.Position = UDim2.new(0.5, 0, 0.850000024, 0)
  48. InjectedText.Size = UDim2.new(1, 0, 0.100000001, 0)
  49. InjectedText.Font = Enum.Font.GothamBold
  50. InjectedText.Text = "Injected!"
  51. InjectedText.TextColor3 = Color3.fromRGB(255, 255, 255)
  52. InjectedText.TextSize = 25.000
  53. InjectedText.TextTransparency = 1.000
  54.  
  55. outline.Name = "Outline"
  56. outline.Parent = InjectedText
  57. outline.ApplyStrokeMode = Enum.ApplyStrokeMode.Contextual
  58. outline.Color = Color3.fromRGB(0,0,0)
  59. outline.LineJoinMode = Enum.LineJoinMode.Round
  60. outline.Thickness = 2
  61. outline.Transparency = 1
  62. outline.Enabled = true
  63.  
  64. local tweenService = game:GetService("TweenService")
  65.  
  66. local tweenInfo = TweenInfo.new(
  67. 0.5,
  68. Enum.EasingStyle.Quad,
  69. Enum.EasingDirection.Out,
  70. 0,
  71. false,
  72. 0
  73. )
  74.  
  75. local function createTween(inst, props)
  76. local tween = tweenService:Create(inst, tweenInfo, props)
  77.  
  78. return tween
  79. end
  80.  
  81. local frameTween = createTween(MainFrame, {BackgroundTransparency = 0.5})
  82.  
  83. frameTween:Play()
  84.  
  85. local lunarTween = createTween(LunarLogo, {ImageTransparency = 0})
  86.  
  87. lunarTween:Play()
  88.  
  89. wait(2)
  90.  
  91. local frameTween2 = createTween(MainFrame, {BackgroundColor3 = Color3.fromRGB(0,0,0)})
  92.  
  93. frameTween2:Play()
  94.  
  95. local lunarTween2 = createTween(LunarLogo, {ImageTransparency = 1})
  96.  
  97. lunarTween2:Play()
  98. lunarTween2.Completed:Wait()
  99.  
  100. local injectedTween = createTween(InjectedText, {TextTransparency = 0})
  101.  
  102. injectedTween:Play()
  103.  
  104. local outlineInjectedTween = createTween(outline, {Transparency = 0})
  105.  
  106. outlineInjectedTween:Play()
  107.  
  108. local krnlTween = createTween(KrnlLogo, {ImageTransparency = 0})
  109.  
  110. krnlTween:Play()
  111.  
  112. wait(2)
  113.  
  114. local krnlTween2 = createTween(KrnlLogo, {ImageTransparency = 1})
  115.  
  116. krnlTween2:Play()
  117.  
  118. local injectedTween2 = createTween(InjectedText, {TextTransparency = 1})
  119.  
  120. injectedTween2:Play()
  121.  
  122. local outlineInjectedTween2 = createTween(outline, {Transparency = 1})
  123.  
  124. outlineInjectedTween2:Play()
  125.  
  126. local frameTween3 = createTween(MainFrame, {BackgroundTransparency = 1})
  127.  
  128. frameTween3:Play()
  129.  
  130. frameTween3.Completed:Wait()
  131.  
  132. wait(5)
  133.  
  134. LunarKrnlAutoExecute:Destroy()
  135.  
  136. warn("Lunar // Krnl has been injected!")
  137.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement