local CoreGui = game:GetService("CoreGui")
local TweenService = game:GetService("TweenService")
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local MarketplaceService = game:GetService("MarketplaceService")
local LocalPlayer = Players.LocalPlayer
if CoreGui:FindFirstChild("AxrexLoadingScreen") then
CoreGui.AxrexLoadingScreen:Destroy()
end
local screenGui = Instance.new("ScreenGui")
screenGui.Name = "AxrexLoadingScreen"
screenGui.IgnoreGuiInset = true
screenGui.ResetOnSpawn = false
screenGui.Parent = CoreGui
local frame = Instance.new("Frame")
frame.Size = UDim2.new(1,0,1,0)
frame.BackgroundTransparency = 0.2
frame.BorderSizePixel = 0
frame.Parent = screenGui
local gradient = Instance.new("UIGradient")
gradient.Parent = frame
gradient.Rotation = 0
gradient.Color = ColorSequence.new{
ColorSequenceKeypoint.new(0, Color3.fromRGB(142, 45, 226)),
ColorSequenceKeypoint.new(1, Color3.fromRGB(56, 191, 226))
}
local label = Instance.new("TextLabel")
label.Size = UDim2.new(0, 250, 0, 60)
label.Position = UDim2.new(0.5, 0, 0.5, 0)
label.AnchorPoint = Vector2.new(0.5, 0.5)
label.BackgroundTransparency = 1
label.Text = "axrex.dev"
label.TextColor3 = Color3.fromRGB(255, 255, 255)
label.Font = Enum.Font.GothamBold
label.TextSize = 40
label.Parent = frame
-- Sol üst logo
local logoLeft = Instance.new("ImageLabel")
logoLeft.Name = "LogoLeft"
logoLeft.Size = UDim2.new(0, 64, 0, 64)
logoLeft.Position = UDim2.new(0, 10, 0, 10)
logoLeft.BackgroundTransparency = 1
logoLeft.Image = "rbxassetid://103556241038817"
logoLeft.Parent = frame
local cornerLeft = Instance.new("UICorner")
cornerLeft.CornerRadius = UDim.new(0, 12)
cornerLeft.Parent = logoLeft
-- Sağ alt logo
local logoRight = Instance.new("ImageLabel")
logoRight.Name = "LogoRight"
logoRight.Size = UDim2.new(0, 64, 0, 64)
logoRight.Position = UDim2.new(1, -74, 1, -74)
logoRight.BackgroundTransparency = 1
logoRight.Image = "rbxassetid://103556241038817"
logoRight.Parent = frame
local cornerRight = Instance.new("UICorner")
cornerRight.CornerRadius = UDim.new(0, 12)
cornerRight.Parent = logoRight
local gameNameLabel = Instance.new("TextLabel")
gameNameLabel.Size = UDim2.new(0, 300, 0, 30)
gameNameLabel.Position = UDim2.new(0, 10, 1, -40)
gameNameLabel.AnchorPoint = Vector2.new(0, 1)
gameNameLabel.BackgroundTransparency = 1
gameNameLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
gameNameLabel.Font = Enum.Font.Gotham
gameNameLabel.TextSize = 20
gameNameLabel.Text = "Game Name: " .. MarketplaceService:GetProductInfo(game.PlaceId).Name
gameNameLabel.Parent = frame
local fpsPingLabel = Instance.new("TextLabel")
fpsPingLabel.Size = UDim2.new(0, 160, 0, 30)
fpsPingLabel.Position = UDim2.new(1, -250, 0, 20)
fpsPingLabel.AnchorPoint = Vector2.new(0, 0)
fpsPingLabel.BackgroundTransparency = 1
fpsPingLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
fpsPingLabel.Font = Enum.Font.Gotham
fpsPingLabel.TextSize = 20
fpsPingLabel.Text = "FPS: 0 | Ping: 0 ms"
fpsPingLabel.Parent = frame
local lastUpdate = tick()
local frameCount = 0
local fps = 0
RunService.RenderStepped:Connect(function()
frameCount += 1
if tick() - lastUpdate >= 1 then
fps = frameCount
frameCount = 0
lastUpdate = tick()
local ping = math.floor(LocalPlayer:GetNetworkPing() * 1000)
fpsPingLabel.Text = string.format("FPS: %d | Ping: %d ms", fps, ping)
end
end)
local executorLabel = Instance.new("TextLabel")
executorLabel.Size = UDim2.new(0, 200, 0, 25)
executorLabel.Position = UDim2.new(1, -300, 1, -30)
executorLabel.AnchorPoint = Vector2.new(0, 1)
executorLabel.BackgroundTransparency = 1
executorLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
executorLabel.Font = Enum.Font.Gotham
executorLabel.TextSize = 18
executorLabel.Text = "discord.gg/MitClans"
executorLabel.Parent = frame
local tweenInfo = TweenInfo.new(3, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut)
local tween = TweenService:Create(label, tweenInfo, {Rotation = 360})
tween:Play()
local sound = Instance.new("Sound")
sound.SoundId = "rbxassetid://1843525427"
sound.Looped = true
sound.Volume = 0.3
sound.Parent = frame
sound:Play()
tween.Completed:Connect(function()
local tweenFade = TweenService:Create(frame, TweenInfo.new(1), {BackgroundTransparency = 1})
local tweenTextFade = TweenService:Create(label, TweenInfo.new(1), {TextTransparency = 1})
local tweenLogoRight = TweenService:Create(logoRight, TweenInfo.new(1), {ImageTransparency = 1})
local tweenLogoLeft = TweenService:Create(logoLeft, TweenInfo.new(1), {ImageTransparency = 1})
local tweenGameName = TweenService:Create(gameNameLabel, TweenInfo.new(1), {TextTransparency = 1})
local tweenFpsPing = TweenService:Create(fpsPingLabel, TweenInfo.new(1), {TextTransparency = 1})
local tweenExecutor = TweenService:Create(executorLabel, TweenInfo.new(1), {TextTransparency = 1})
local tweenSound = TweenService:Create(sound, TweenInfo.new(1), {Volume = 0})
tweenFade:Play()
tweenTextFade:Play()
tweenLogoRight:Play()
tweenLogoLeft:Play()
tweenGameName:Play()
tweenFpsPing:Play()
tweenExecutor:Play()
tweenSound:Play()
tweenTextFade.Completed:Wait()
sound:Stop()
screenGui:Destroy()
-- Yüklenmesi gereken diğer scriptler
local success, err = pcall(function()
-- XantiHubV2'yi yükle
loadstring(game:HttpGet("https://raw.githubusercontent.com/AxerBa/XantiHubV2/main/Loader/source.lua"))()
-- XantiDex.lua'yı yükle
loadstring(game:HttpGet("https://raw.githubusercontent.com/AxerBa/XantiHubV2/refs/heads/main/Modulas/XantiDex.lua"))()
end)
if not success then
warn("Scriptler yüklenirken hata oluştu:", err)
end
end)
Comments
Need Update for fly
Need Update Now Good
Thats My First Script Everybody