local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "Gemini FE 6.4",
LoadingTitle = "Gemini Administrative System",
LoadingSubtitle = "Serious Mode Active",
ConfigurationSaving = {
Enabled = true,
FolderName = "GeminiFE",
FileName = "Config"
}
})
-- ABA: NULLS (ESP e Rejoin)
local NullsTab = Window:CreateTab("Nulls", 4483362458)
NullsTab:CreateButton({
Name = "ESP (See Players)",
Callback = function()
for _, v in pairs(game.Players:GetPlayers()) do
if v ~= game.Players.LocalPlayer and v.Character then
local h = Instance.new("Highlight", v.Character)
h.FillColor = Color3.fromRGB(255, 0, 0)
end
end
end,
})
NullsTab:CreateButton({
Name = "Instant Rejoin",
Callback = function()
game:GetService("TeleportService"):Teleport(game.PlaceId, game.Players.LocalPlayer)
end,
})
-- ABA: EPIC SCRIPTS (Comandos e Segurança)
local EpicTab = Window:CreateTab("Epic Scripts", 4483362458)
-- Função para Criar a Arma Gemini
local function SpawnGeminiGun()
local player = game.Players.LocalPlayer
local Tool = Instance.new("Tool")
Tool.Name = "Gemini FE Gun"
Tool.RequiresHandle = true
Tool.CanBeDropped = true
local Handle = Instance.new("Part")
Handle.Name = "Handle"
Handle.Size = Vector3.new(0.4, 0.4, 1.5)
Handle.Color = Color3.fromRGB(255, 0, 0) -- Vermelho da primeira sílaba
Handle.Parent = Tool
-- Script de Dano (Depende da sua limpeza com o Dex)
Tool.Activated:Connect(function()
local mouse = player:GetMouse()
if mouse.Target and mouse.Target.Parent:FindFirstChild("Humanoid") then
mouse.Target.Parent.Humanoid.Health = 0
end
end)
Tool.Parent = player.Backpack
Rayfield:Notify({
Title = "SYSTEM",
Content = "Gemini FE Weapon Deployed.",
Duration = 5
})
end
-- Listener do Chat para o Comando ;gunsecret
game.Players.LocalPlayer.Chatted:Connect(function(msg)
if msg:lower() == ";gunsecret gemini execute" then
SpawnGeminiGun()
end
end)
-- Botão para Executar o Admin (Renomeado conforme pedido)
EpicTab:CreateButton({
Name = "Execute Gemini FE 6.4 ⓖ",
Callback = function()
-- Carrega a base do admin mas mantém o nome Gemini
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
Rayfield:Notify({
Title = "Gemini FE",
Content = "Admin System Injected Successfully.",
Duration = 5
})
end,
})
-- Input de Segurança
EpicTab:CreateInput({
Name = ":gunsecret (code)",
PlaceholderText = "Input code...",
RemoveTextAfterFocusLost = true,
Callback = function(Text)
if Text:lower() == "gemini execute" then
SpawnGeminiGun()
end
end,
})
-- Botão Dex Explorer (Essencial para o Modo Sério)
EpicTab:CreateButton({
Name = "Open Dark Dex (Security Bypass)",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/dex.lua"))()
end,
})
EpicTab:CreateButton({
Name = "Don't rejoin - respawn ❌",
Callback = function()
Rayfield:Notify({
Title = "Alert",
Content = "Permanent Death Active.",
Duration = 5
})
end,
})
Rayfield:LoadConfiguration()