UI Loader Testing

Blox Fruits is an immensely popular game on the Roblox platform, boasting a vast user base. This action-adventure game revolves around a pirate theme, where players engage in combat against a variety of enemies and challenging bosses. Exploring islands and consuming different fruits are essential for advancing your character’s level.

What is Roblox Script?

Roblox Scripts typically refer to snippets of code that offer automation advantages within the game. Independent developers and scripters create these scripts, which are not officially endorsed by the Roblox platform. Nevertheless, you can still utilize these scripts through Roblox executors such as Arceus X, Hydrogen Executor, JJSploit, Fluxus executor, and others.

How to Use Roblox Script?

  1. Launch Roblox and join your desired game.
  2. Click the “Copy” button to duplicate the script code.
  3. Paste the script code into your preferred Roblox executor.
  4. Execute the script code and savor the enhanced experience.
--[[
	WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]

-- \\ UI Loader Test by mxkxkks//

-- Github : https://github.com/mxkxkks1
-- The wording is "LOOEJ" if you were wondering.

getgenv().cfg = {
    art = {
        "  _      ____   ____  ______    _______ ",
        " | |    / __ \\ / __ \\|  ____|  |__   __|",
        " | |   | |  | | |  | | |__     ___| |   ",
        " | |   | |  | | |  | |  __|   |__ | |   ",
        " | |___| |__| | |__| | |____   ___| |   ",
        " |_____\\____/ \\____/|______| |____/    "
    },
    dispT = 5, -- display timing
    fdeT = 1, -- fade dur
    textCol = Color3.fromRGB(255, 255, 255), -- text color (white)
    shadowCol = Color3.fromRGB(0, 0, 0), -- shadow color (black)
    outlineCol = Color3.fromRGB(0, 0, 0), -- outline (black)
    shadowOffset = UDim2.new(0, 3, 0, 3)
}

local p = game:GetService("Players").LocalPlayer
local g = Instance.new("ScreenGui")
local b = Instance.new("Frame")
local t = Instance.new("TextLabel")
local s = Instance.new("TextLabel")

b.Parent = g
b.Size = UDim2.new(1, 0, 1, 0)
b.Position = UDim2.new(0, 0, 0, 0)
b.BackgroundTransparency = 1

t.Parent = b
t.BackgroundTransparency = 1
t.Size = UDim2.new(1, 0, 1, 0)
t.TextColor3 = getgenv().cfg.textCol
t.TextStrokeColor3 = getgenv().cfg.outlineCol
t.TextStrokeTransparency = 0.5
t.Font = Enum.Font.Code
t.TextSize = 20
t.TextWrapped = true
t.RichText = true
t.Text = table.concat(getgenv().cfg.art, "\n")

s.Parent = b
s.BackgroundTransparency = 1
s.Size = UDim2.new(1, 0, 1, 0)
s.TextColor3 = getgenv().cfg.shadowCol
s.TextStrokeColor3 = getgenv().cfg.shadowCol
s.TextStrokeTransparency = 1
s.Font = Enum.Font.Code
s.TextSize = 20
s.TextWrapped = true
s.RichText = true
s.Text = table.concat(getgenv().cfg.art, "\n")
s.Position = getgenv().cfg.shadowOffset

local snd = Instance.new("Sound")
snd.SoundId = "rbxassetid://4416840411" -- change ID to your liking.
snd.Volume = 1
snd.Parent = g

local function f1()
    local a = 20
    local b = 50
    local c = 10
    local d = (b - a) / c

    for i = 1, c do
        t.TextSize = a + (d * i)
        s.TextSize = a + (d * i)
        wait(getgenv().cfg.fdeT / c)
    end
end

-- \\ TWEENING //

local function f2()
    local t1 = 0.5
    local t2 = 100

    local r = Vector2.new(math.random(-t2, t2), math.random(-t2, t2))
    t:TweenPosition(t.Position + UDim2.new(0, r.X, 0, r.Y), "Out", "Quad", t1, true)
    s:TweenPosition(s.Position + UDim2.new(0, r.X, 0, r.Y), "Out", "Quad", t1, true)

    t.Rotation = 360
    s.Rotation = 360 -- 360 trigger [BROKE]

    for i = 1, 10 do
        t.TextTransparency = i * 0.1
        s.TextTransparency = i * 0.1
        wait(0.05)
    end
end

local function f3()
    local c = table.concat(getgenv().cfg.art, "\n")
    t.Text = c
    s.Text = c
    wait(getgenv().cfg.dispT - getgenv().cfg.fdeT)
    f1()
    f2()
    t.Text = ""
    s.Text = ""
    t.TextTransparency = 0
    s.TextTransparency = 0
    t.TextSize = 20
    s.TextSize = 20
end

g.Parent = p:WaitForChild("PlayerGui")

delay(3.5, function() -- Sound delay, 3.5 is recommended
    snd:Play()
end)

f3()

 

Remember to employ a dummy account when injecting scripts. We cannot be held responsible for any potential harm caused to your Roblox account.

Description

comment any suggestions. yes this is a start, don’t expect much

Download Cricfy

Leave a Comment

Your email address will not be published. Required fields are marked *