ADVERTISEMENTREMOVE ADS
Game icon

LOKI STYLE AND FLOW [NEED REO] KEYLESS

Blue Lock: Rivals
6 months ago
Script preview thumbnail
Script Preview

Description

WORKING LOKI STYLE AND GODSPEED FLOW, JUST EXECUTE AND PLAY AND U HAVE IT +USE NO CD SCRIPT

Features:

  • Godspeed Flow
  • Loki Style
ADVERTISEMENTREMOVE ADS
55 Lines • 1.45 KiB
Raw
local plr = game.Players.LocalPlayer
local stats = plr:WaitForChild("PlayerStats")
local gui = Instance.new("ScreenGui")
gui.Parent = game.CoreGui
gui.Name = "MastersGui"
local frame = Instance.new("Frame")
frame.Parent = gui
frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
frame.Position = UDim2.new(0.15, 0, 0.15, 0)
frame.Size = UDim2.new(0, 200, 0, 120)
frame.Active = true
frame.Draggable = true
local uicorner = Instance.new("UICorner", frame)
uicorner.CornerRadius = UDim.new(0, 10)
-- Функция для создания кнопок
local function createButton(name, posY, callback)
local btn = Instance.new("TextButton")
btn.Parent = frame
btn.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
btn.Position = UDim2.new(0.05, 0, posY, 0)
btn.Size = UDim2.new(0.9, 0, 0, 40)
btn.Font = Enum.Font.GothamBlack
btn.Text = name
btn.TextColor3 = Color3.fromRGB(0, 0, 0)
btn.TextScaled = true
btn.TextWrapped = true
btn.MouseButton1Down:Connect(callback)
local corner = Instance.new("UICorner", btn)
corner.CornerRadius = UDim.new(0, 6)
-- Радужная анимация
spawn(function()
while true do
for hue = 0, 1, 0.01 do
btn.BackgroundColor3 = Color3.fromHSV(hue, 1, 1)
wait(0.03)
end
end
end)
end
-- Кнопка Loki [MASTERS]
createButton("Loki [MASTERS]", 0.05, function()
stats.Style.Value = "Loki"
end)
-- Кнопка Godspeed [FLOW]
createButton("Godspeed [FLOW]", 0.55, function()
stats.Flow.Value = "Godspeed"
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS