-- Services local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") local Lighting = game:GetService("Lighting") local player = Players.LocalPlayer -- GUI local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "ScreenGui" ScreenGui.Parent = player:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Name = "Frame" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 1 Frame.Position = UDim2.new(0, 189, 0, 30) Frame.Size = UDim2.new(0, 360, 0, 240) Frame.Active = true Frame.ClipsDescendants = false -- عنوان GUI local TextLabel = Instance.new("TextLabel") TextLabel.Name = "TextLabel" TextLabel.Parent = Frame TextLabel.BackgroundTransparency = 1 TextLabel.Position = UDim2.new(0,0,0,5) TextLabel.Size = UDim2.new(1,0,0,40) TextLabel.Font = Enum.Font.Antique TextLabel.Text = "HusseinGUI_9" TextLabel.TextSize = 28 TextLabel.TextColor3 = Color3.fromRGB(27,42,53) TextLabel.TextStrokeColor3 = Color3.fromRGB(0,0,0) TextLabel.TextStrokeTransparency = 0.7 TextLabel.TextScaled = true TextLabel.TextWrapped = true TextLabel.TextXAlignment = Enum.TextXAlignment.Center TextLabel.TextYAlignment = Enum.TextYAlignment.Center local UICorner = Instance.new("UICorner") UICorner.Parent = TextLabel -- اسم الفريق تحت الزرار local TeamLabel = Instance.new("TextLabel") TeamLabel.Name = "TeamLabel" TeamLabel.Parent = Frame TeamLabel.BackgroundTransparency = 1 TeamLabel.Position = UDim2.new(0,0,0,200) TeamLabel.Size = UDim2.new(1,0,0,30) TeamLabel.Font = Enum.Font.SourceSansBold TeamLabel.Text = "team R6660313" TeamLabel.TextSize = 22 TeamLabel.TextColor3 = Color3.fromRGB(255,0,0) TeamLabel.TextStrokeColor3 = Color3.fromRGB(0,0,0) TeamLabel.TextStrokeTransparency = 0.5 TeamLabel.TextScaled = true TeamLabel.TextWrapped = true TeamLabel.TextXAlignment = Enum.TextXAlignment.Center TeamLabel.TextYAlignment = Enum.TextYAlignment.Center -- تمكين السحب do local dragging = false local dragInput, dragStart, startPos local function update(input) local delta = input.Position - dragStart Frame.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end Frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = Frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) Frame.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then update(input) end end) end -- دالة إنشاء زر local buttonList = {} local function createButton(name, text, callback) local button = Instance.new("TextButton") button.Name = name button.Parent = Frame button.Size = UDim2.new(0,100,0,35) button.BackgroundColor3 = Color3.fromRGB(0,0,0) button.TextColor3 = Color3.fromRGB(255,255,255) button.Font = Enum.Font.SourceSansBold button.TextSize = 18 button.Text = text local bc = Instance.new("UICorner", button) bc.CornerRadius = UDim.new(0,8) button.MouseEnter:Connect(function() TweenService:Create(button, TweenInfo.new(0.2), {Size=UDim2.new(0,110,0,35)}):Play() end) button.MouseLeave:Connect(function() TweenService:Create(button, TweenInfo.new(0.2), {Size=UDim2.new(0,100,0,35)}):Play() end) button.MouseButton1Click:Connect(callback) table.insert(buttonList, button) return button end -- ترتيب الأزرار تلقائيًا local function arrangeButtons() local paddingX = 20 local buttonsPerRow = 3 local startX = paddingX local startY = 60 local spacingX = 120 local spacingY = 50 for i, button in ipairs(buttonList) do local row = math.floor((i-1)/buttonsPerRow) local col = (i-1) % buttonsPerRow button.Position = UDim2.new(0, startX + col*spacingX, 0, startY + row*spacingY) end end -- Sky images local images = { "rbxassetid://114128626690223", "rbxassetid://121121601582400", "rbxassetid://103772438482613", "rbxassetid://132406330493067" } local Sky = Instance.new("Sky", Lighting) local function setSky(imageId) Sky.SkyboxBk = imageId Sky.SkyboxDn = imageId Sky.SkyboxFt = imageId Sky.SkyboxLf = imageId Sky.SkyboxRt = imageId Sky.SkyboxUp = imageId end -- FE Bypass بدون تغيير السكن task.spawn(function() local char = player.Character or player.CharacterAdded:Wait() -- فقط تعديل قدرات اللاعب بدون لمس المظهر local humanoid = char:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.JumpPower = 150 humanoid.WalkSpeed = 50 pcall(function() humanoid.Health = humanoid.Health + 50 end) end -- إضافة أداة Super Sword local tool = Instance.new("Tool") tool.RequiresHandle = false tool.CanBeDropped = false tool.Name = "Super Sword" tool.Parent = player.Backpack tool.Activated:Connect(function() local rs = game:GetService("ReplicatedStorage") for _, r in ipairs({"DamagePlayer","KillRemote"}) do local remote = rs:FindFirstChild(r) if remote and remote:IsA("RemoteEvent") then for _, plr in ipairs(Players:GetPlayers()) do if plr ~= player then pcall(function() remote:FireServer(plr, math.random(50,150)) end) end end end end end) end) -- إنشاء الأزرار createButton("SkyButton","Sky",function() task.spawn(function() local index = 1 while true do setSky(images[index]) index = index + 1 if index > #images then index = 1 end task.wait(0.25) end end) end) createButton("DiscoButton","Disco",function() task.spawn(function() while true do Lighting.Ambient = Color3.new(math.random(),math.random(),math.random()) task.wait(0.2) end end) end) createButton("Button666","666",function() task.spawn(function() for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") then part.BrickColor = BrickColor.new("Bright red") local fire = Instance.new("Fire", part) fire.Size = 5 fire.Heat = 10 end end end) end) createButton("DecalSpamButton","Decal-Spam",function() local decalId = "rbxassetid://104419476925669" for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") and not part:IsA("Terrain") then for _, face in ipairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal") decal.Face = face decal.Texture = decalId decal.Parent = part end end end end) createButton("MusicButton","Music",function() local music = Instance.new("Sound", workspace) music.Name = "CustomMusic" music.SoundId = "rbxassetid://89153135320315" music.Volume = 5 music.Looped = true music:Play() end) createButton("JumpScareButton","Jump-Scare",function() local image = Instance.new("ImageLabel") image.Parent = ScreenGui image.Size = UDim2.new(1,0,1,0) image.Position = UDim2.new(0,0,0,0) image.BackgroundTransparency = 1 image.ZIndex = 100 image.Image = "rbxassetid://121596319863213" local scream = Instance.new("Sound", ScreenGui) scream.SoundId = "rbxassetid://103215672097028" scream.Volume = 5 scream:Play() task.spawn(function() for i=1,10 do ScreenGui.Position = UDim2.new(0,math.random(-10,10),0,math.random(-10,10)) task.wait(0.05) end ScreenGui.Position = UDim2.new(0,0,0,0) end) task.delay(4,function() if image then image:Destroy() end if scream then scream:Destroy() end end) end) -- ترتيب الأزرار arrangeButtons()