--owner threatned to dox me and hurt my family :/ local Players = game:GetService('Players') local RunService = game:GetService('RunService') local TweenService = game:GetService('TweenService') local UserInputService = game:GetService('UserInputService') local HttpService = game:GetService('HttpService') local TeleportService = game:GetService('TeleportService') local LocalPlayer = Players.LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local Humanoid = Character:WaitForChild('Humanoid') local HumanoidRootPart = Character:WaitForChild('HumanoidRootPart') local UserId = LocalPlayer.UserId local Gravity = game:GetService('Workspace').Gravity local ZeroVector = Vector3.zero local AdminPanel = Instance.new('ScreenGui') AdminPanel.Name = 'AdminPanel' AdminPanel.Parent = LocalPlayer.PlayerGui local LoginFrame = Instance.new('Frame') LoginFrame.Name = 'LoginFrame' LoginFrame.Size = UDim2.new(0, 400, 0, 500) LoginFrame.Position = UDim2.new(0.5, -200, 0.5, -250) LoginFrame.BackgroundColor3 = Color3.fromRGB(40, 0, 60) LoginFrame.BackgroundTransparency = 0.1 LoginFrame.BorderSizePixel = 0 LoginFrame.Active = true LoginFrame.Parent = AdminPanel local LoginGradient = Instance.new('UIGradient') LoginGradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(100, 0, 150)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(60, 0, 90)), ColorSequenceKeypoint.new(1, Color3.fromRGB(20, 0, 30)) }) LoginGradient.Rotation = 135 LoginGradient.Parent = LoginFrame local LoginCorner = Instance.new('UICorner') LoginCorner.CornerRadius = UDim.new(0, 15) LoginCorner.Parent = LoginFrame local TitleLabel = Instance.new('TextLabel') TitleLabel.Name = 'TitleLabel' TitleLabel.Size = UDim2.new(0.8, 0, 0, 60) TitleLabel.Position = UDim2.new(0.1, 0, 0.05, 0) TitleLabel.BackgroundTransparency = 1 TitleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TitleLabel.TextSize = 32 TitleLabel.Font = Enum.Font.GothamBold TitleLabel.Text = 'Bienvenue' TitleLabel.TextStrokeTransparency = 0.8 TitleLabel.TextStrokeColor3 = Color3.fromRGB(150, 0, 255) TitleLabel.Parent = LoginFrame local ProfileImage = Instance.new('ImageLabel') ProfileImage.Name = 'ProfileImage' ProfileImage.Size = UDim2.new(0, 120, 0, 120) ProfileImage.Position = UDim2.new(0.5, -60, 0.2, 0) ProfileImage.BackgroundColor3 = Color3.fromRGB(30, 0, 45) ProfileImage.BorderSizePixel = 0 ProfileImage.Image = 'rbxassetid://0' ProfileImage.ImageTransparency = 0.5 ProfileImage.Parent = LoginFrame local ProfileCorner = Instance.new('UICorner') ProfileCorner.CornerRadius = UDim.new(0.5, 0) ProfileCorner.Parent = ProfileImage local ProfileStroke = Instance.new('UIStroke') ProfileStroke.Color = Color3.fromRGB(150, 0, 255) ProfileStroke.Thickness = 3 ProfileStroke.Parent = ProfileImage local UserIdBox = Instance.new('TextBox') UserIdBox.Name = 'UserIdBox' UserIdBox.Size = UDim2.new(0.8, 0, 0, 50) UserIdBox.Position = UDim2.new(0.1, 0, 0.5, 0) UserIdBox.BackgroundColor3 = Color3.fromRGB(30, 0, 45) UserIdBox.BackgroundTransparency = 0.3 UserIdBox.TextColor3 = Color3.fromRGB(255, 255, 255) UserIdBox.PlaceholderColor3 = Color3.fromRGB(180, 180, 180) UserIdBox.PlaceholderText = 'Entrez votre ID Roblox' UserIdBox.Text = tostring(LocalPlayer.UserId) UserIdBox.TextSize = 20 UserIdBox.Font = Enum.Font.Gotham UserIdBox.Parent = LoginFrame local UserIdCorner = Instance.new('UICorner') UserIdCorner.CornerRadius = UDim.new(0, 10) UserIdCorner.Parent = UserIdBox local UserIdStroke = Instance.new('UIStroke') UserIdStroke.Color = Color3.fromRGB(100, 0, 150) UserIdStroke.Thickness = 2 UserIdStroke.Parent = UserIdBox local LanguageFrame = Instance.new('Frame') LanguageFrame.Name = 'LanguageFrame' LanguageFrame.Size = UDim2.new(0.8, 0, 0, 50) LanguageFrame.Position = UDim2.new(0.1, 0, 0.65, 0) LanguageFrame.BackgroundTransparency = 1 LanguageFrame.Parent = LoginFrame local LanguageText = Instance.new('TextLabel') LanguageText.Name = 'LanguageText' LanguageText.Size = UDim2.new(0.4, 0, 1, 0) LanguageText.Position = UDim2.new(0, 0, 0, 0) LanguageText.BackgroundTransparency = 1 LanguageText.TextColor3 = Color3.fromRGB(255, 255, 255) LanguageText.Text = 'Langue:' LanguageText.TextSize = 18 LanguageText.Font = Enum.Font.Gotham LanguageText.TextXAlignment = Enum.TextXAlignment.Left LanguageText.Parent = LanguageFrame local LanguageDropdown = Instance.new('TextButton') LanguageDropdown.Name = 'LanguageDropdown' LanguageDropdown.Size = UDim2.new(0.6, 0, 1, 0) LanguageDropdown.Position = UDim2.new(0.4, 0, 0, 0) LanguageDropdown.BackgroundColor3 = Color3.fromRGB(30, 0, 45) LanguageDropdown.BackgroundTransparency = 0.3 LanguageDropdown.TextColor3 = Color3.fromRGB(255, 255, 255) LanguageDropdown.Text = 'FR 🇫🇷' LanguageDropdown.TextSize = 18 LanguageDropdown.Font = Enum.Font.GothamBold LanguageDropdown.Parent = LanguageFrame local LangCorner = Instance.new('UICorner') LangCorner.CornerRadius = UDim.new(0, 10) LangCorner.Parent = LanguageDropdown local LangStroke = Instance.new('UIStroke') LangStroke.Color = Color3.fromRGB(100, 0, 150) LangStroke.Thickness = 2 LangStroke.Parent = LanguageDropdown local ConnectButton = Instance.new('TextButton') ConnectButton.Name = 'ConnectButton' ConnectButton.Size = UDim2.new(0.8, 0, 0, 60) ConnectButton.Position = UDim2.new(0.1, 0, 0.82, 0) ConnectButton.BackgroundColor3 = Color3.fromRGB(120, 0, 200) ConnectButton.TextColor3 = Color3.fromRGB(255, 255, 255) ConnectButton.Text = 'Connexion' ConnectButton.TextSize = 24 ConnectButton.Font = Enum.Font.GothamBold ConnectButton.AutoButtonColor = false ConnectButton.Parent = LoginFrame local ConnectCorner = Instance.new('UICorner') ConnectCorner.CornerRadius = UDim.new(0, 12) ConnectCorner.Parent = ConnectButton local ConnectStroke = Instance.new('UIStroke') ConnectStroke.Color = Color3.fromRGB(180, 0, 255) ConnectStroke.Thickness = 3 ConnectStroke.Parent = ConnectButton local ConnectGradient = Instance.new('UIGradient') ConnectGradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(180, 0, 255)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(255, 0, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(180, 0, 255)) }) ConnectGradient.Rotation = 90 ConnectGradient.Enabled = false ConnectGradient.Parent = ConnectButton local MainFrame = Instance.new('Frame') MainFrame.Name = 'MainFrame' MainFrame.Size = UDim2.new(0, 400, 0, 550) MainFrame.Position = UDim2.new(0.5, -200, 0.5, -275) MainFrame.BackgroundColor3 = Color3.fromRGB(40, 0, 60) MainFrame.BackgroundTransparency = 0.1 MainFrame.BorderSizePixel = 0 MainFrame.Visible = false MainFrame.Active = true MainFrame.Parent = AdminPanel local MainGradient = Instance.new('UIGradient') MainGradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(100, 0, 150)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(60, 0, 90)), ColorSequenceKeypoint.new(1, Color3.fromRGB(20, 0, 30)) }) MainGradient.Rotation = 45 MainGradient.Parent = MainFrame local MainCorner = Instance.new('UICorner') MainCorner.CornerRadius = UDim.new(0, 15) MainCorner.Parent = MainFrame local HeaderFrame = Instance.new('Frame') HeaderFrame.Name = 'HeaderFrame' HeaderFrame.Size = UDim2.new(1, 0, 0, 120) HeaderFrame.Position = UDim2.new(0, 0, 0, 0) HeaderFrame.BackgroundTransparency = 1 HeaderFrame.Parent = MainFrame local ConnectedProfileImage = Instance.new('ImageLabel') ConnectedProfileImage.Name = 'ConnectedProfileImage' ConnectedProfileImage.Size = UDim2.new(0, 80, 0, 80) ConnectedProfileImage.Position = UDim2.new(0.1, 0, 0.15, 0) ConnectedProfileImage.BackgroundColor3 = Color3.fromRGB(30, 0, 45) ConnectedProfileImage.BorderSizePixel = 0 ConnectedProfileImage.Parent = HeaderFrame local ConnectedCorner = Instance.new('UICorner') ConnectedCorner.CornerRadius = UDim.new(0.5, 0) ConnectedCorner.Parent = ConnectedProfileImage local ConnectedStroke = Instance.new('UIStroke') ConnectedStroke.Color = Color3.fromRGB(150, 0, 255) ConnectedStroke.Thickness = 3 ConnectedStroke.Parent = ConnectedProfileImage local UserIdLabel = Instance.new('TextLabel') UserIdLabel.Name = 'UserIdLabel' UserIdLabel.Size = UDim2.new(0.6, 0, 0, 25) UserIdLabel.Position = UDim2.new(0.35, 0, 0.2, 0) UserIdLabel.BackgroundTransparency = 1 UserIdLabel.TextColor3 = Color3.fromRGB(200, 200, 255) UserIdLabel.TextSize = 16 UserIdLabel.Font = Enum.Font.GothamBold UserIdLabel.Text = 'ID: ' .. tostring(UserId) UserIdLabel.TextXAlignment = Enum.TextXAlignment.Left UserIdLabel.Parent = HeaderFrame local UsernameLabel = Instance.new('TextLabel') UsernameLabel.Name = 'UsernameLabel' UsernameLabel.Size = UDim2.new(0.6, 0, 0, 30) UsernameLabel.Position = UDim2.new(0.35, 0, 0.45, 0) UsernameLabel.BackgroundTransparency = 1 UsernameLabel.TextColor3 = Color3.fromRGB(255, 255, 255) UsernameLabel.TextSize = 20 UsernameLabel.Font = Enum.Font.GothamBold UsernameLabel.Text = 'Pseudo: ' .. Players:GetNameFromUserIdAsync(UserId) UsernameLabel.TextXAlignment = Enum.TextXAlignment.Left UsernameLabel.Parent = HeaderFrame local StatusLabel = Instance.new('TextLabel') StatusLabel.Name = 'StatusLabel' StatusLabel.Size = UDim2.new(0.6, 0, 0, 25) StatusLabel.Position = UDim2.new(0.35, 0, 0.75, 0) StatusLabel.BackgroundTransparency = 1 StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 0) StatusLabel.TextSize = 14 StatusLabel.Font = Enum.Font.Gotham StatusLabel.Text = '● Connecté' StatusLabel.TextXAlignment = Enum.TextXAlignment.Left StatusLabel.Parent = HeaderFrame local LogoutButton = Instance.new('TextButton') LogoutButton.Name = 'LogoutButton' LogoutButton.Size = UDim2.new(0.15, 0, 0, 30) LogoutButton.Position = UDim2.new(0.85, 0, 0.05, 0) LogoutButton.BackgroundColor3 = Color3.fromRGB(150, 0, 50) LogoutButton.TextColor3 = Color3.fromRGB(255, 255, 255) LogoutButton.Text = 'X' LogoutButton.TextSize = 20 LogoutButton.Font = Enum.Font.GothamBold LogoutButton.Parent = HeaderFrame local LogoutCorner = Instance.new('UICorner') LogoutCorner.CornerRadius = UDim.new(0, 8) LogoutCorner.Parent = LogoutButton local Separator = Instance.new('Frame') Separator.Name = 'Separator' Separator.Size = UDim2.new(0.9, 0, 0, 2) Separator.Position = UDim2.new(0.05, 0, 0.22, 0) Separator.BackgroundColor3 = Color3.fromRGB(100, 0, 150) Separator.BorderSizePixel = 0 Separator.Parent = MainFrame local FeaturesTitle = Instance.new('TextLabel') FeaturesTitle.Name = 'FeaturesTitle' FeaturesTitle.Size = UDim2.new(0.8, 0, 0, 30) FeaturesTitle.Position = UDim2.new(0.1, 0, 0.25, 0) FeaturesTitle.BackgroundTransparency = 1 FeaturesTitle.TextColor3 = Color3.fromRGB(255, 255, 255) FeaturesTitle.TextSize = 20 FeaturesTitle.Font = Enum.Font.GothamBold FeaturesTitle.Text = 'Paramètres' FeaturesTitle.TextStrokeTransparency = 0.8 FeaturesTitle.TextStrokeColor3 = Color3.fromRGB(150, 0, 255) FeaturesTitle.Parent = MainFrame local AnimationsFrame = Instance.new('Frame') AnimationsFrame.Name = 'AnimationsFrame' AnimationsFrame.Size = UDim2.new(0.38, 0, 0, 80) AnimationsFrame.Position = UDim2.new(0.1, 0, 0.33, 0) AnimationsFrame.BackgroundColor3 = Color3.fromRGB(30, 0, 45) AnimationsFrame.BackgroundTransparency = 0.3 AnimationsFrame.Parent = MainFrame local AnimCorner = Instance.new('UICorner') AnimCorner.CornerRadius = UDim.new(0, 12) AnimCorner.Parent = AnimationsFrame local AnimStroke = Instance.new('UIStroke') AnimStroke.Color = Color3.fromRGB(100, 0, 150) AnimStroke.Thickness = 2 AnimStroke.Parent = AnimationsFrame local AnimIcon = Instance.new('ImageLabel') AnimIcon.Name = 'AnimationsIcon' AnimIcon.Size = UDim2.new(0, 45, 0, 45) AnimIcon.Position = UDim2.new(0.5, -22.5, 0.2, 0) AnimIcon.BackgroundTransparency = 1 AnimIcon.Image = 'rbxassetid://3926305904' AnimIcon.ImageRectOffset = Vector2.new(204, 964) AnimIcon.ImageRectSize = Vector2.new(36, 36) AnimIcon.ImageColor3 = Color3.fromRGB(255, 255, 255) AnimIcon.Parent = AnimationsFrame local AnimText = Instance.new('TextLabel') AnimText.Name = 'AnimationsText' AnimText.Size = UDim2.new(0.9, 0, 0.2, 0) AnimText.Position = UDim2.new(0.05, 0, 0.6, 0) AnimText.BackgroundTransparency = 1 AnimText.TextColor3 = Color3.fromRGB(255, 255, 255) AnimText.TextSize = 14 AnimText.Font = Enum.Font.GothamBold AnimText.Text = 'Animations' AnimText.TextXAlignment = Enum.TextXAlignment.Center AnimText.Parent = AnimationsFrame local AnimButton = Instance.new('TextButton') AnimButton.Name = 'AnimationsButton' AnimButton.Size = UDim2.new(0.8, 0, 0.25, 0) AnimButton.Position = UDim2.new(0.1, 0, 0.85, 0) AnimButton.BackgroundColor3 = Color3.fromRGB(80, 0, 0) AnimButton.TextColor3 = Color3.fromRGB(255, 255, 255) AnimButton.Text = 'DÉSACTIVER' AnimButton.TextSize = 12 AnimButton.Font = Enum.Font.GothamBold AnimButton.AutoButtonColor = false AnimButton.Parent = AnimationsFrame local AnimBtnCorner = Instance.new('UICorner') AnimBtnCorner.CornerRadius = UDim.new(0, 6) AnimBtnCorner.Parent = AnimButton local NoClipFrame = Instance.new('Frame') NoClipFrame.Name = 'NoClipFrame' NoClipFrame.Size = UDim2.new(0.38, 0, 0, 80) NoClipFrame.Position = UDim2.new(0.52, 0, 0.33, 0) NoClipFrame.BackgroundColor3 = Color3.fromRGB(30, 0, 45) NoClipFrame.BackgroundTransparency = 0.3 NoClipFrame.Parent = MainFrame local NoClipCorner = Instance.new('UICorner') NoClipCorner.CornerRadius = UDim.new(0, 12) NoClipCorner.Parent = NoClipFrame local NoClipStroke = Instance.new('UIStroke') NoClipStroke.Color = Color3.fromRGB(100, 0, 150) NoClipStroke.Thickness = 2 NoClipStroke.Parent = NoClipFrame local NoClipIcon = Instance.new('ImageLabel') NoClipIcon.Name = 'NoClipIcon' NoClipIcon.Size = UDim2.new(0, 45, 0, 45) NoClipIcon.Position = UDim2.new(0.5, -22.5, 0.2, 0) NoClipIcon.BackgroundTransparency = 1 NoClipIcon.Image = 'rbxassetid://3926305904' NoClipIcon.ImageRectOffset = Vector2.new(644, 204) NoClipIcon.ImageRectSize = Vector2.new(36, 36) NoClipIcon.ImageColor3 = Color3.fromRGB(255, 255, 255) NoClipIcon.Parent = NoClipFrame local NoClipText = Instance.new('TextLabel') NoClipText.Name = 'NoClipText' NoClipText.Size = UDim2.new(0.9, 0, 0.2, 0) NoClipText.Position = UDim2.new(0.05, 0, 0.6, 0) NoClipText.BackgroundTransparency = 1 NoClipText.TextColor3 = Color3.fromRGB(255, 255, 255) NoClipText.TextSize = 14 NoClipText.Font = Enum.Font.GothamBold NoClipText.Text = 'NoClip' NoClipText.TextXAlignment = Enum.TextXAlignment.Center NoClipText.Parent = NoClipFrame local NoClipButton = Instance.new('TextButton') NoClipButton.Name = 'NoClipButton' NoClipButton.Size = UDim2.new(0.8, 0, 0.25, 0) NoClipButton.Position = UDim2.new(0.1, 0, 0.85, 0) NoClipButton.BackgroundColor3 = Color3.fromRGB(80, 0, 0) NoClipButton.TextColor3 = Color3.fromRGB(255, 255, 255) NoClipButton.Text = 'DÉSACTIVER' NoClipButton.TextSize = 12 NoClipButton.Font = Enum.Font.GothamBold NoClipButton.AutoButtonColor = false NoClipButton.Parent = NoClipFrame local NoClipBtnCorner = Instance.new('UICorner') NoClipBtnCorner.CornerRadius = UDim.new(0, 6) NoClipBtnCorner.Parent = NoClipButton local SupermanFrame = Instance.new('Frame') SupermanFrame.Name = 'SupermanFrame' SupermanFrame.Size = UDim2.new(0.38, 0, 0, 80) SupermanFrame.Position = UDim2.new(0.1, 0, 0.52, 0) SupermanFrame.BackgroundColor3 = Color3.fromRGB(30, 0, 45) SupermanFrame.BackgroundTransparency = 0.3 SupermanFrame.Parent = MainFrame local SupermanCorner = Instance.new('UICorner') SupermanCorner.CornerRadius = UDim.new(0, 12) SupermanCorner.Parent = SupermanFrame local SupermanStroke = Instance.new('UIStroke') SupermanStroke.Color = Color3.fromRGB(0, 100, 200) SupermanStroke.Thickness = 2 SupermanStroke.Parent = SupermanFrame local SupermanIcon = Instance.new('ImageLabel') SupermanIcon.Name = 'SupermanIcon' SupermanIcon.Size = UDim2.new(0, 45, 0, 45) SupermanIcon.Position = UDim2.new(0.5, -22.5, 0.2, 0) SupermanIcon.BackgroundTransparency = 1 SupermanIcon.Image = 'rbxassetid://3926305904' SupermanIcon.ImageRectOffset = Vector2.new(964, 324) SupermanIcon.ImageRectSize = Vector2.new(36, 36) SupermanIcon.ImageColor3 = Color3.fromRGB(0, 150, 255) SupermanIcon.Parent = SupermanFrame local SupermanText = Instance.new('TextLabel') SupermanText.Name = 'SupermanText' SupermanText.Size = UDim2.new(0.9, 0, 0.2, 0) SupermanText.Position = UDim2.new(0.05, 0, 0.6, 0) SupermanText.BackgroundTransparency = 1 SupermanText.TextColor3 = Color3.fromRGB(255, 255, 255) SupermanText.TextSize = 14 SupermanText.Font = Enum.Font.GothamBold SupermanText.Text = 'Superman' SupermanText.TextXAlignment = Enum.TextXAlignment.Center SupermanText.Parent = SupermanFrame local SupermanButton = Instance.new('TextButton') SupermanButton.Name = 'SupermanButton' SupermanButton.Size = UDim2.new(0.8, 0, 0.25, 0) SupermanButton.Position = UDim2.new(0.1, 0, 0.85, 0) SupermanButton.BackgroundColor3 = Color3.fromRGB(0, 50, 150) SupermanButton.TextColor3 = Color3.fromRGB(255, 255, 255) SupermanButton.Text = 'ACTIVER' SupermanButton.TextSize = 12 SupermanButton.Font = Enum.Font.GothamBold SupermanButton.AutoButtonColor = false SupermanButton.Parent = SupermanFrame local SupermanBtnCorner = Instance.new('UICorner') SupermanBtnCorner.CornerRadius = UDim.new(0, 6) SupermanBtnCorner.Parent = SupermanButton local SpidermanFrame = Instance.new('Frame') SpidermanFrame.Name = 'SpidermanFrame' SpidermanFrame.Size = UDim2.new(0.38, 0, 0, 80) SpidermanFrame.Position = UDim2.new(0.52, 0, 0.52, 0) SpidermanFrame.BackgroundColor3 = Color3.fromRGB(30, 0, 45) SpidermanFrame.BackgroundTransparency = 0.3 SpidermanFrame.Parent = MainFrame local SpidermanCorner = Instance.new('UICorner') SpidermanCorner.CornerRadius = UDim.new(0, 12) SpidermanCorner.Parent = SpidermanFrame local SpidermanStroke = Instance.new('UIStroke') SpidermanStroke.Color = Color3.fromRGB(200, 0, 0) SpidermanStroke.Thickness = 2 SpidermanStroke.Parent = SpidermanFrame local SpidermanIcon = Instance.new('ImageLabel') SpidermanIcon.Name = 'SpidermanIcon' SpidermanIcon.Size = UDim2.new(0, 45, 0, 45) SpidermanIcon.Position = UDim2.new(0.5, -22.5, 0.2, 0) SpidermanIcon.BackgroundTransparency = 1 SpidermanIcon.Image = 'rbxassetid://3926305904' SpidermanIcon.ImageRectOffset = Vector2.new(724, 204) SpidermanIcon.ImageRectSize = Vector2.new(36, 36) SpidermanIcon.ImageColor3 = Color3.fromRGB(255, 0, 0) SpidermanIcon.Parent = SpidermanFrame local SpidermanText = Instance.new('TextLabel') SpidermanText.Name = 'SpidermanText' SpidermanText.Size = UDim2.new(0.9, 0, 0.2, 0) SpidermanText.Position = UDim2.new(0.05, 0, 0.6, 0) SpidermanText.BackgroundTransparency = 1 SpidermanText.TextColor3 = Color3.fromRGB(255, 255, 255) SpidermanText.TextSize = 14 SpidermanText.Font = Enum.Font.GothamBold SpidermanText.Text = 'Spiderman' SpidermanText.TextXAlignment = Enum.TextXAlignment.Center SpidermanText.Parent = SpidermanFrame local SpidermanButton = Instance.new('TextButton') SpidermanButton.Name = 'SpidermanButton' SpidermanButton.Size = UDim2.new(0.8, 0, 0.25, 0) SpidermanButton.Position = UDim2.new(0.1, 0, 0.85, 0) SpidermanButton.BackgroundColor3 = Color3.fromRGB(150, 0, 0) SpidermanButton.TextColor3 = Color3.fromRGB(255, 255, 255) SpidermanButton.Text = 'ACTIVER' SpidermanButton.TextSize = 12 SpidermanButton.Font = Enum.Font.GothamBold SpidermanButton.AutoButtonColor = false SpidermanButton.Parent = SpidermanFrame local SpidermanBtnCorner = Instance.new('UICorner') SpidermanBtnCorner.CornerRadius = UDim.new(0, 6) SpidermanBtnCorner.Parent = SpidermanButton local TeleportFrame = Instance.new('Frame') TeleportFrame.Name = 'TeleportFrame' TeleportFrame.Size = UDim2.new(0.38, 0, 0, 80) TeleportFrame.Position = UDim2.new(0.1, 0, 0.71, 0) TeleportFrame.BackgroundColor3 = Color3.fromRGB(30, 0, 45) TeleportFrame.BackgroundTransparency = 0.3 TeleportFrame.Parent = MainFrame local TeleportCorner = Instance.new('UICorner') TeleportCorner.CornerRadius = UDim.new(0, 12) TeleportCorner.Parent = TeleportFrame local TeleportStroke = Instance.new('UIStroke') TeleportStroke.Color = Color3.fromRGB(100, 0, 150) TeleportStroke.Thickness = 2 TeleportStroke.Parent = TeleportFrame local TeleportIcon = Instance.new('ImageLabel') TeleportIcon.Name = 'TeleportIcon' TeleportIcon.Size = UDim2.new(0, 45, 0, 45) TeleportIcon.Position = UDim2.new(0.5, -22.5, 0.2, 0) TeleportIcon.BackgroundTransparency = 1 TeleportIcon.Image = 'rbxassetid://3926305904' TeleportIcon.ImageRectOffset = Vector2.new(44, 764) TeleportIcon.ImageRectSize = Vector2.new(36, 36) TeleportIcon.ImageColor3 = Color3.fromRGB(255, 255, 255) TeleportIcon.Parent = TeleportFrame local TeleportText = Instance.new('TextLabel') TeleportText.Name = 'TeleportText' TeleportText.Size = UDim2.new(0.9, 0, 0.2, 0) TeleportText.Position = UDim2.new(0.05, 0, 0.6, 0) TeleportText.BackgroundTransparency = 1 TeleportText.TextColor3 = Color3.fromRGB(255, 255, 255) TeleportText.TextSize = 14 TeleportText.Font = Enum.Font.GothamBold TeleportText.Text = 'Téléportation' TeleportText.TextXAlignment = Enum.TextXAlignment.Center TeleportText.Parent = TeleportFrame local TeleportButton = Instance.new('TextButton') TeleportButton.Name = 'TeleportButton' TeleportButton.Size = UDim2.new(0.8, 0, 0.25, 0) TeleportButton.Position = UDim2.new(0.1, 0, 0.85, 0) TeleportButton.BackgroundColor3 = Color3.fromRGB(80, 0, 150) TeleportButton.TextColor3 = Color3.fromRGB(255, 255, 255) TeleportButton.Text = 'Téléportation' TeleportButton.TextSize = 12 TeleportButton.Font = Enum.Font.GothamBold TeleportButton.AutoButtonColor = false TeleportButton.Parent = TeleportFrame local TeleportBtnCorner = Instance.new('UICorner') TeleportBtnCorner.CornerRadius = UDim.new(0, 6) TeleportBtnCorner.Parent = TeleportButton local TeleportPopup = Instance.new('Frame') TeleportPopup.Name = 'TeleportPopup' TeleportPopup.Size = UDim2.new(0.9, 0, 0, 250) TeleportPopup.Position = UDim2.new(0.05, 0, 0.25, 0) TeleportPopup.BackgroundColor3 = Color3.fromRGB(40, 0, 60) TeleportPopup.BackgroundTransparency = 0.1 TeleportPopup.BorderSizePixel = 0 TeleportPopup.Visible = false TeleportPopup.ZIndex = 10 TeleportPopup.Parent = MainFrame local TeleportPopupGradient = Instance.new('UIGradient') TeleportPopupGradient.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(100, 0, 150)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(60, 0, 90)), ColorSequenceKeypoint.new(1, Color3.fromRGB(20, 0, 30)) }) TeleportPopupGradient.Rotation = 45 TeleportPopupGradient.Parent = TeleportPopup local TeleportPopupCorner = Instance.new('UICorner') TeleportPopupCorner.CornerRadius = UDim.new(0, 12) TeleportPopupCorner.Parent = TeleportPopup local TeleportTitle = Instance.new('TextLabel') TeleportTitle.Name = 'TeleportTitle' TeleportTitle.Size = UDim2.new(0.8, 0, 0, 40) TeleportTitle.Position = UDim2.new(0.1, 0, 0.05, 0) TeleportTitle.BackgroundTransparency = 1 TeleportTitle.TextColor3 = Color3.fromRGB(255, 255, 255) TeleportTitle.TextSize = 22 TeleportTitle.Font = Enum.Font.GothamBold TeleportTitle.Text = 'Téléportation' TeleportTitle.TextStrokeTransparency = 0.8 TeleportTitle.TextStrokeColor3 = Color3.fromRGB(150, 0, 255) TeleportTitle.Parent = TeleportPopup local SearchBox = Instance.new('TextBox') SearchBox.Name = 'SearchBox' SearchBox.Size = UDim2.new(0.8, 0, 0, 40) SearchBox.Position = UDim2.new(0.1, 0, 0.25, 0) SearchBox.BackgroundColor3 = Color3.fromRGB(30, 0, 45) SearchBox.BackgroundTransparency = 0.3 SearchBox.TextColor3 = Color3.fromRGB(255, 255, 255) SearchBox.PlaceholderColor3 = Color3.fromRGB(180, 180, 180) SearchBox.PlaceholderText = 'Rechercher un joueur...' SearchBox.Text = '' SearchBox.TextSize = 16 SearchBox.Font = Enum.Font.Gotham SearchBox.Parent = TeleportPopup local SearchCorner = Instance.new('UICorner') SearchCorner.CornerRadius = UDim.new(0, 8) SearchCorner.Parent = SearchBox local SearchStroke = Instance.new('UIStroke') SearchStroke.Color = Color3.fromRGB(100, 0, 150) SearchStroke.Thickness = 2 SearchStroke.Parent = SearchBox local PlayersList = Instance.new('ScrollingFrame') PlayersList.Name = 'PlayersList' PlayersList.Size = UDim2.new(0.8, 0, 0, 100) PlayersList.Position = UDim2.new(0.1, 0, 0.45, 0) PlayersList.BackgroundColor3 = Color3.fromRGB(30, 0, 45) PlayersList.BackgroundTransparency = 0.3 PlayersList.BorderSizePixel = 0 PlayersList.ScrollBarThickness = 5 PlayersList.CanvasSize = UDim2.new(0, 0, 0, 0) PlayersList.Parent = TeleportPopup local ListCorner = Instance.new('UICorner') ListCorner.CornerRadius = UDim.new(0, 8) ListCorner.Parent = PlayersList local ListStroke = Instance.new('UIStroke') ListStroke.Color = Color3.fromRGB(100, 0, 150) ListStroke.Thickness = 2 ListStroke.Parent = PlayersList local CloseTeleportButton = Instance.new('TextButton') CloseTeleportButton.Name = 'CloseTeleportButton' CloseTeleportButton.Size = UDim2.new(0.8, 0, 0, 40) CloseTeleportButton.Position = UDim2.new(0.1, 0, 0.8, 0) CloseTeleportButton.BackgroundColor3 = Color3.fromRGB(150, 0, 50) CloseTeleportButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseTeleportButton.Text = 'Fermer' CloseTeleportButton.TextSize = 18 CloseTeleportButton.Font = Enum.Font.GothamBold CloseTeleportButton.Parent = TeleportPopup local CloseTpCorner = Instance.new('UICorner') CloseTpCorner.CornerRadius = UDim.new(0, 8) CloseTpCorner.Parent = CloseTeleportButton local FlyGui = Instance.new('ScreenGui') FlyGui.Name = 'FlyGui' FlyGui.ResetOnSpawn = false FlyGui.Parent = LocalPlayer:WaitForChild('PlayerGui') FlyGui.Enabled = false local FlyMainFrame = Instance.new('Frame') FlyMainFrame.Name = 'MainFrame' FlyMainFrame.Position = UDim2.new(0.5, -110, 0.5, -85) FlyMainFrame.Active = true FlyMainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 40) FlyMainFrame.BorderSizePixel = 0 FlyMainFrame.Size = UDim2.new(0, 220, 0, 170) FlyMainFrame.Parent = FlyGui local FlyCorner = Instance.new('UICorner') FlyCorner.CornerRadius = UDim.new(0, 10) FlyCorner.Parent = FlyMainFrame local FlyTitle = Instance.new('TextLabel') FlyTitle.TextColor3 = Color3.new(1, 1, 1) FlyTitle.Font = Enum.Font.GothamBold FlyTitle.Name = 'TitleLabel' FlyTitle.Position = UDim2.new(0, 0, 0, 0) FlyTitle.BackgroundTransparency = 1 FlyTitle.Text = 'Superman Fly' FlyTitle.TextSize = 24 FlyTitle.Size = UDim2.new(1, 0, 0, 40) FlyTitle.Parent = FlyMainFrame local ToggleButton = Instance.new('TextButton') ToggleButton.TextColor3 = Color3.new(1, 1, 1) ToggleButton.Text = 'FLY: OFF' ToggleButton.Font = Enum.Font.GothamBold ToggleButton.Name = 'ToggleButton' ToggleButton.Position = UDim2.new(0.05, 0, 0, 45) ToggleButton.BorderSizePixel = 0 ToggleButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50) ToggleButton.TextSize = 20 ToggleButton.Size = UDim2.new(0.9, 0, 0, 30) ToggleButton.Parent = FlyMainFrame local ToggleCorner = Instance.new('UICorner') ToggleCorner.CornerRadius = UDim.new(0, 8) ToggleCorner.Parent = ToggleButton local SpeedFrame = Instance.new('Frame') SpeedFrame.BackgroundTransparency = 1 SpeedFrame.Position = UDim2.new(0, 10, 0, 80) SpeedFrame.Name = 'SpeedFrame' SpeedFrame.Size = UDim2.new(0, 200, 0, 30) SpeedFrame.Parent = FlyMainFrame local MinusButton = Instance.new('TextButton') MinusButton.TextColor3 = Color3.new(1, 1, 1) MinusButton.Text = '–' MinusButton.Font = Enum.Font.GothamBold MinusButton.Name = 'MinusButton' MinusButton.Position = UDim2.new(0, 0, 0, 0) MinusButton.BorderSizePixel = 0 MinusButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) MinusButton.TextSize = 24 MinusButton.Size = UDim2.new(0, 30, 0, 30) MinusButton.Parent = SpeedFrame local MinusCorner = Instance.new('UICorner') MinusCorner.CornerRadius = UDim.new(0, 8) MinusCorner.Parent = MinusButton local SpeedTextBox = Instance.new('TextBox') SpeedTextBox.TextColor3 = Color3.new(1, 1, 1) SpeedTextBox.Text = '50' SpeedTextBox.TextScaled = true SpeedTextBox.BorderSizePixel = 0 SpeedTextBox.Font = Enum.Font.GothamBold SpeedTextBox.Name = 'SpeedTextBox' SpeedTextBox.Position = UDim2.new(0, 30, 0, 0) SpeedTextBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) SpeedTextBox.ClearTextOnFocus = false SpeedTextBox.TextSize = 20 SpeedTextBox.Size = UDim2.new(0, 140, 0, 30) SpeedTextBox.Parent = SpeedFrame local SpeedCorner = Instance.new('UICorner') SpeedCorner.CornerRadius = UDim.new(0, 8) SpeedCorner.Parent = SpeedTextBox local PlusButton = Instance.new('TextButton') PlusButton.TextColor3 = Color3.new(1, 1, 1) PlusButton.Text = '+' PlusButton.Font = Enum.Font.GothamBold PlusButton.Name = 'PlusButton' PlusButton.Position = UDim2.new(0, 170, 0, 0) PlusButton.BorderSizePixel = 0 PlusButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) PlusButton.TextSize = 24 PlusButton.Size = UDim2.new(0, 30, 0, 30) PlusButton.Parent = SpeedFrame local PlusCorner = Instance.new('UICorner') PlusCorner.CornerRadius = UDim.new(0, 8) PlusCorner.Parent = PlusButton local KeybindButton = Instance.new('TextButton') KeybindButton.TextColor3 = Color3.new(1, 1, 1) KeybindButton.Text = 'KEYBIND: ' .. Enum.KeyCode.X.Name KeybindButton.Font = Enum.Font.GothamBold KeybindButton.Name = 'KeybindButton' KeybindButton.Position = UDim2.new(0.05, 0, 0, 120) KeybindButton.BorderSizePixel = 0 KeybindButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) KeybindButton.TextSize = 20 KeybindButton.Size = UDim2.new(0.9, 0, 0, 30) KeybindButton.Parent = FlyMainFrame local KeybindCorner = Instance.new('UICorner') KeybindCorner.CornerRadius = UDim.new(0, 8) KeybindCorner.Parent = KeybindButton local CloseButton = Instance.new('TextButton') CloseButton.TextColor3 = Color3.new(1, 1, 1) CloseButton.Text = 'X' CloseButton.Font = Enum.Font.GothamBold CloseButton.Name = 'CloseButton' CloseButton.Position = UDim2.new(1, -35, 0, 5) CloseButton.BorderSizePixel = 0 CloseButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50) CloseButton.TextSize = 20 CloseButton.Size = UDim2.new(0, 30, 0, 30) CloseButton.Parent = FlyMainFrame local CloseFlyCorner = Instance.new('UICorner') CloseFlyCorner.CornerRadius = UDim.new(0, 8) CloseFlyCorner.Parent = CloseButton local dragging = false local dragInput local dragStart local startPos LoginFrame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = LoginFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) LoginFrame.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - dragStart LoginFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) dragging = false dragInput = nil dragStart = nil startPos = nil MainFrame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = MainFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) MainFrame.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - dragStart MainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) dragging = false dragInput = nil dragStart = nil startPos = nil FlyMainFrame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = FlyMainFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) FlyMainFrame.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - dragStart FlyMainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) ConnectButton.MouseButton1Click:Connect(function() if tonumber(UserIdBox.Text) == UserId then LoginFrame.Visible = false MainFrame.Visible = true local thumbnail = Players:GetUserThumbnailAsync(UserId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420) ConnectedProfileImage.Image = thumbnail ProfileImage.Image = thumbnail else end end) ConnectButton.MouseEnter:Connect(function() ConnectGradient.Enabled = true end) ConnectButton.MouseLeave:Connect(function() ConnectGradient.Enabled = false end) LanguageDropdown.MouseButton1Click:Connect(function() end) AnimButton.MouseButton1Click:Connect(function() if AnimButton.Text == 'DÉSACTIVER' then AnimButton.Text = 'ACTIVER' AnimButton.BackgroundColor3 = Color3.fromRGB(0, 80, 0) else AnimButton.Text = 'DÉSACTIVER' AnimButton.BackgroundColor3 = Color3.fromRGB(80, 0, 0) end end) NoClipButton.MouseButton1Click:Connect(function() if NoClipButton.Text == 'DÉSACTIVER' then NoClipButton.Text = 'ACTIVER' NoClipButton.BackgroundColor3 = Color3.fromRGB(0, 80, 0) RunService.Stepped:Connect(function() for _, part in pairs(Character:GetDescendants()) do if part:IsA('BasePart') then part.CanCollide = false end end end) else NoClipButton.Text = 'DÉSACTIVER' NoClipButton.BackgroundColor3 = Color3.fromRGB(80, 0, 0) end end) SupermanButton.MouseButton1Click:Connect(function() if SupermanButton.Text == 'ACTIVER' then SupermanButton.Text = 'DÉSACTIVER' SupermanButton.BackgroundColor3 = Color3.fromRGB(0, 80, 0) FlyGui.Enabled = true else SupermanButton.Text = 'ACTIVER' SupermanButton.BackgroundColor3 = Color3.fromRGB(0, 50, 150) FlyGui.Enabled = false end end) SpidermanButton.MouseButton1Click:Connect(function() if SpidermanButton.Text == 'ACTIVER' then SpidermanButton.Text = 'DÉSACTIVER' SpidermanButton.BackgroundColor3 = Color3.fromRGB(80, 0, 0) else SpidermanButton.Text = 'ACTIVER' SpidermanButton.BackgroundColor3 = Color3.fromRGB(150, 0, 0) end end) TeleportButton.MouseButton1Click:Connect(function() TeleportPopup.Visible = true end) CloseTeleportButton.MouseButton1Click:Connect(function() TeleportPopup.Visible = false end) SearchBox:GetPropertyChangedSignal('Text'):Connect(function() end) LogoutButton.MouseButton1Click:Connect(function() MainFrame.Visible = false LoginFrame.Visible = true end) AnimationsFrame.MouseEnter:Connect(function() TweenService:Create(AnimationsFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0}):Play() end) AnimationsFrame.MouseLeave:Connect(function() TweenService:Create(AnimationsFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0.3}):Play() end) NoClipFrame.MouseEnter:Connect(function() TweenService:Create(NoClipFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0}):Play() end) NoClipFrame.MouseLeave:Connect(function() TweenService:Create(NoClipFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0.3}):Play() end) SupermanFrame.MouseEnter:Connect(function() TweenService:Create(SupermanFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0}):Play() end) SupermanFrame.MouseLeave:Connect(function() TweenService:Create(SupermanFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0.3}):Play() end) SpidermanFrame.MouseEnter:Connect(function() TweenService:Create(SpidermanFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0}):Play() end) SpidermanFrame.MouseLeave:Connect(function() TweenService:Create(SpidermanFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0.3}):Play() end) TeleportFrame.MouseEnter:Connect(function() TweenService:Create(TeleportFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0}):Play() end) TeleportFrame.MouseLeave:Connect(function() TweenService:Create(TeleportFrame, TweenInfo.new(0.2), {BackgroundTransparency = 0.3}):Play() end) local flySpeed = 50 local flying = false local keybind = Enum.KeyCode.X SpeedTextBox.FocusLost:Connect(function() flySpeed = tonumber(SpeedTextBox.Text) or 50 end) PlusButton.MouseButton1Click:Connect(function() flySpeed = flySpeed + 5 SpeedTextBox.Text = tostring(flySpeed) end) MinusButton.MouseButton1Click:Connect(function() flySpeed = math.max(1, flySpeed - 5) SpeedTextBox.Text = tostring(flySpeed) end) KeybindButton.MouseButton1Click:Connect(function() end) UserInputService.InputBegan:Connect(function(input) if input.KeyCode == keybind then flying = not flying ToggleButton.Text = 'FLY: ' .. (flying and 'ON' or 'OFF') ToggleButton.BackgroundColor3 = flying and Color3.fromRGB(50, 200, 50) or Color3.fromRGB(200, 50, 50) end end) ToggleButton.MouseButton1Click:Connect(function() flying = not flying ToggleButton.Text = 'FLY: ' .. (flying and 'ON' or 'OFF') ToggleButton.BackgroundColor3 = flying and Color3.fromRGB(50, 200, 50) or Color3.fromRGB(200, 50, 50) end) CloseButton.MouseButton1Click:Connect(function() FlyGui.Enabled = false end) LocalPlayer.CharacterAdded:Connect(function(newChar) Character = newChar Humanoid = newChar:WaitForChild('Humanoid') HumanoidRootPart = newChar:WaitForChild('HumanoidRootPart') end) print('✅ Système admin chargé avec succès!') print('✅ Panel de connexion avec ID et langue') print('✅ Panel principal avec SUPERMAN ET SPIDERMAN') print('✅ Superman (Bleu) - Système complet de vol avec GUI') print('✅ Spiderman (Rouge) - Script externe') print('✅ Animations, NoClip, Téléportation') print('✅ Interface aérée et organisée')