Advertisement
ILovePotato

Untitled

Nov 22nd, 2024
12,035
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. -- FAKE KJ GUI 😏 Stylish Intro Script
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local TextLabel = Instance.new("TextLabel")
  4. local TweenService = game:GetService("TweenService")
  5.  
  6. -- GUI Properties
  7. ScreenGui.Parent = game.CoreGui
  8. ScreenGui.IgnoreGuiInset = true
  9.  
  10. TextLabel.Parent = ScreenGui
  11. TextLabel.Size = UDim2.new(0.5, 0, 0.2, 0)
  12. TextLabel.Position = UDim2.new(0.25, 0, 0.4, 0)
  13. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  14. TextLabel.BackgroundTransparency = 1
  15. TextLabel.Text = "FAKE KJ GUI 😏"
  16. TextLabel.Font = Enum.Font.GothamBlack
  17. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  18. TextLabel.TextScaled = true
  19. TextLabel.TextTransparency = 1
  20.  
  21. -- Intro Animation
  22. local fadeIn = TweenService:Create(TextLabel, TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { TextTransparency = 0 })
  23. local scaleUp = TweenService:Create(TextLabel, TweenInfo.new(1.5, Enum.EasingStyle.Back, Enum.EasingDirection.Out), { Size = UDim2.new(0.6, 0, 0.3, 0) })
  24. local fadeOut = TweenService:Create(TextLabel, TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), { TextTransparency = 1 })
  25.  
  26. fadeIn:Play()
  27. fadeIn.Completed:Connect(function()
  28. scaleUp:Play()
  29. end)
  30.  
  31. scaleUp.Completed:Connect(function()
  32. fadeOut:Play()
  33. end)
  34.  
  35. -- Execute Script After 3 Seconds
  36. delay(3, function()
  37. ScreenGui:Destroy()
  38. local PabloLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/BatuKvi123/PabloLibV3/main/PabloLibV3"))()
  39. local window = PabloLib:Create(
  40. "FAKE KJ SCRIPT😏", -- Name here.
  41. "Enabled", -- If you want draggable set here to "Enabled" if you dont want set to "Disabled".
  42. "p" -- You can put any keybind here to open close.
  43. )
  44. local tab1 = window:CreateTab("Basic moves")
  45. tab1:CreateButton("Ravage", function()
  46. loadstring(game:HttpGet("https://pastebin.com/raw/pQBSdrBG"))()
  47. print("Hello World")
  48. end)
  49. tab1:CreateButton("Swift Sweep", function()
  50. loadstring(game:HttpGet("https://pastebin.com/raw/mpNj8beT"))()
  51. print("Hello World")
  52. end)
  53. tab1:CreateButton("Collateral Ruin", function()
  54. loadstring(game:HttpGet("https://pastebin.com/raw/2JQ7K5hk"))()
  55. print("Hello World")
  56. end)
  57. local tab1 = window:CreateTab("Ultimate moves")
  58. tab1:CreateButton("Five seasons", function()
  59. loadstring(game:HttpGet("https://pastebin.com/raw/qxJxBvdX"))()
  60. print("Hello World")
  61. end)
  62. tab1:CreateButton("Stoic bomb", function()
  63. loadstring(game:HttpGet("https://pastebin.com/raw/BQAA19Wh"))()
  64. print("Hello World")
  65. end)
  66. tab1:CreateButton("20-20-20 dropkick", function()
  67. loadstring(game:HttpGet("https://pastebin.com/raw/h7fh9c98"))()
  68. print("Hello World")
  69. end)
  70. tab1:CreateLabel("Ult 1+2")
  71. tab1:CreateButton("Ult 1", function()
  72. loadstring(game:HttpGet("https://pastebin.com/raw/J9Kv4Y95"))()
  73. print("Hello World")
  74. end)
  75. tab1:CreateButton("Ult 2", function()
  76. loadstring(game:HttpGet("https://pastebin.com/raw/pwPfkbXf"))()
  77. print("Hello World")
  78. end)
  79. local tab1 = window:CreateTab("Fun")
  80. tab1:CreateButton("kj m1's", function()
  81. loadstring(game:HttpGet("https://pastebin.com/raw/dxZ9PyyX"))()
  82. print("Hello World")
  83. end)
  84. tab1:CreateButton("dummy counter", function()
  85. loadstring(game:HttpGet("https://pastebin.com/raw/w7ZpeVYS"))()
  86. print("Hello World")
  87. end)
  88. local tab1 = window:CreateTab("About")
  89. tab1:CreateLabel("SOME BUG CAN OCCURR")
  90. tab1:CreateLabel("This gui like THE BEST ONE")
  91. tab1:CreateLabel("Created by NeverGonnaGiveUpLo4 on Roblox")
  92. tab1:CreateLabel("Create by The editer man + scripter in YOUTUBE")
  93. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement