Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- FAKE KJ GUI π Stylish Intro Script
- local ScreenGui = Instance.new("ScreenGui")
- local TextLabel = Instance.new("TextLabel")
- local TweenService = game:GetService("TweenService")
- -- GUI Properties
- ScreenGui.Parent = game.CoreGui
- ScreenGui.IgnoreGuiInset = true
- TextLabel.Parent = ScreenGui
- TextLabel.Size = UDim2.new(0.5, 0, 0.2, 0)
- TextLabel.Position = UDim2.new(0.25, 0, 0.4, 0)
- TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Text = "FAKE KJ GUI π"
- TextLabel.Font = Enum.Font.GothamBlack
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextTransparency = 1
- -- Intro Animation
- local fadeIn = TweenService:Create(TextLabel, TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { TextTransparency = 0 })
- local scaleUp = TweenService:Create(TextLabel, TweenInfo.new(1.5, Enum.EasingStyle.Back, Enum.EasingDirection.Out), { Size = UDim2.new(0.6, 0, 0.3, 0) })
- local fadeOut = TweenService:Create(TextLabel, TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), { TextTransparency = 1 })
- fadeIn:Play()
- fadeIn.Completed:Connect(function()
- scaleUp:Play()
- end)
- scaleUp.Completed:Connect(function()
- fadeOut:Play()
- end)
- -- Execute Script After 3 Seconds
- delay(3, function()
- ScreenGui:Destroy()
- local PabloLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/BatuKvi123/PabloLibV3/main/PabloLibV3"))()
- local window = PabloLib:Create(
- "FAKE KJ SCRIPTπ", -- Name here.
- "Enabled", -- If you want draggable set here to "Enabled" if you dont want set to "Disabled".
- "p" -- You can put any keybind here to open close.
- )
- local tab1 = window:CreateTab("Basic moves")
- tab1:CreateButton("Ravage", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/pQBSdrBG"))()
- print("Hello World")
- end)
- tab1:CreateButton("Swift Sweep", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/mpNj8beT"))()
- print("Hello World")
- end)
- tab1:CreateButton("Collateral Ruin", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/2JQ7K5hk"))()
- print("Hello World")
- end)
- local tab1 = window:CreateTab("Ultimate moves")
- tab1:CreateButton("Five seasons", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/qxJxBvdX"))()
- print("Hello World")
- end)
- tab1:CreateButton("Stoic bomb", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/BQAA19Wh"))()
- print("Hello World")
- end)
- tab1:CreateButton("20-20-20 dropkick", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/h7fh9c98"))()
- print("Hello World")
- end)
- tab1:CreateLabel("Ult 1+2")
- tab1:CreateButton("Ult 1", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/J9Kv4Y95"))()
- print("Hello World")
- end)
- tab1:CreateButton("Ult 2", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/pwPfkbXf"))()
- print("Hello World")
- end)
- local tab1 = window:CreateTab("Fun")
- tab1:CreateButton("kj m1's", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/dxZ9PyyX"))()
- print("Hello World")
- end)
- tab1:CreateButton("dummy counter", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/w7ZpeVYS"))()
- print("Hello World")
- end)
- local tab1 = window:CreateTab("About")
- tab1:CreateLabel("SOME BUG CAN OCCURR")
- tab1:CreateLabel("This gui like THE BEST ONE")
- tab1:CreateLabel("Created by NeverGonnaGiveUpLo4 on Roblox")
- tab1:CreateLabel("Create by The editer man + scripter in YOUTUBE")
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement