0% found this document useful (0 votes)
22 views3 pages

Th FZIN HUB: Roblox GUI Script

The document is a Lua script for a Roblox game interface called 'Th FZIN HUB'. It features a draggable menu with a red title, animated central alerts, and buttons for saving locations, teleporting, and activating 'GØD MODE' with RGB effects. The script includes visual elements, animations, and user interactions to enhance the gaming experience.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views3 pages

Th FZIN HUB: Roblox GUI Script

The document is a Lua script for a Roblox game interface called 'Th FZIN HUB'. It features a draggable menu with a red title, animated central alerts, and buttons for saving locations, teleporting, and activating 'GØD MODE' with RGB effects. The script includes visual elements, animations, and user interactions to enhance the gaming experience.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

--// ☠️ Th FZIN HUB ☠️ - LocalScript visual by GPT-5

--// Menu arrastável, título vermelho, avisos centralizados e GØD MODE RGB

local player = [Link]


local TweenService = game:GetService("TweenService")
local RunService = game:GetService("RunService")
local UserInputService = game:GetService("UserInputService")

--// Interface principal


local gui = [Link]("ScreenGui")
[Link] = "ThFzinHub"
[Link] = false
[Link] = player:WaitForChild("PlayerGui")

--// Janela principal


local mainFrame = [Link]("Frame")
[Link] = [Link](0, 300, 0, 200)
[Link] = [Link](0.02, 0, 0.1, 0)
mainFrame.BackgroundColor3 = [Link](20, 20, 20)
[Link] = 0
[Link] = true
[Link] = true
[Link] = gui

local corner = [Link]("UICorner", mainFrame)


[Link] = [Link](0, 10)

local stroke = [Link]("UIStroke", mainFrame)


[Link] = 2
[Link] = [Link](255, 0, 0)

--// Título
local title = [Link]("TextLabel")
[Link] = mainFrame
[Link] = [Link](1, 0, 0, 40)
[Link] = 1
[Link] = "☠️ Th FZIN HUB ☠️"
[Link] = [Link]
title.TextColor3 = [Link](255, 50, 50)
[Link] = 22
[Link] = 0.8

--// Aviso central animado


local avisoFrame = [Link]("Frame")
[Link] = gui
[Link] = [Link](0, 300, 0, 60)
[Link] = [Link](0.5, -150, 0.45, 0)
avisoFrame.BackgroundColor3 = [Link](255, 0, 0)
[Link] = 0.25
[Link] = false
[Link]("UICorner", avisoFrame).CornerRadius = [Link](0, 12)

local avisoLabel = [Link]("TextLabel")


[Link] = avisoFrame
[Link] = [Link](1, 0, 1, 0)
[Link] = 1
[Link] = [Link]
[Link] = 20
avisoLabel.TextColor3 = [Link](255, 255, 255)
[Link] = 0.3
[Link] = ""

local function mostrarAviso(texto)


[Link] = texto
[Link] = true
[Link] = 1
[Link] = 1

TweenService:Create(avisoFrame, [Link](0.3), {BackgroundTransparency =


0.25}):Play()
TweenService:Create(avisoLabel, [Link](0.3), {TextTransparency =
0}):Play()

[Link](2.2)
TweenService:Create(avisoFrame, [Link](0.4), {BackgroundTransparency =
1}):Play()
TweenService:Create(avisoLabel, [Link](0.4), {TextTransparency =
1}):Play()

[Link](0.5)
[Link] = false
end

--// Botão base


local function criarBotao(texto, posY, cor)
local botao = [Link]("TextButton")
[Link] = mainFrame
[Link] = [Link](0.9, 0, 0, 36)
[Link] = [Link](0.05, 0, 0, posY)
botao.BackgroundColor3 = cor or [Link](30,30,30)
[Link] = texto
botao.TextColor3 = [Link](230,230,230)
[Link] = [Link]
[Link] = 16
[Link] = true
[Link]("UICorner", botao).CornerRadius = [Link](0,8)
[Link]("UIStroke", botao).Thickness = 1
return botao
end

--// Botões
local btnSalvar = criarBotao("📂 Salvar Localização", 50)
local btnTeleporte = criarBotao("☠️ TELETRANSPORTAR ☠️", 95)
local btnGod = criarBotao("GØD MODE", 140)

--// Efeito RGB do GØD MODE


[Link](function()
local t = 0
while [Link]() do
t += 0.05
local r = [Link](t)*0.5+0.5
local g = [Link](t+2)*0.5+0.5
local b = [Link](t+4)*0.5+0.5
btnGod.TextColor3 = [Link](r,g,b)
end
end)

--// Ações (visuais)


btnSalvar.MouseButton1Click:Connect(function()
mostrarAviso("📂 Localização salva com sucesso!")
end)

btnTeleporte.MouseButton1Click:Connect(function()
mostrarAviso("☠️ Teletransportado com sucesso!")
end)

btnGod.MouseButton1Click:Connect(function()
mostrarAviso("✨ GØD MODE ativado!")
end)

--// Créditos do criador


local credit = [Link]("TextLabel")
[Link] = mainFrame
[Link] = [Link](1, 0, 0, 20)
[Link] = [Link](0, 0, 1, -22)
[Link] = 1
[Link] = "#[Link]"
[Link] = [Link]
credit.TextColor3 = [Link](255, 255, 255)
[Link] = 0.3
[Link] = 14
[Link] = 0.8
[Link] = [Link]

--// Animação de entrada


[Link] = [Link](0.02, 0, -0.5, 0)
TweenService:Create(mainFrame, [Link](0.6, [Link],
[Link]), {
Position = [Link](0.02, 0, 0.1, 0)
}):Play()

You might also like