-- R6 Namaz Script local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local NamazButton = Instance.new("TextButton") local StatusLabel = Instance.new("TextLabel") -- GUI Ayarları ScreenGui.Parent = game.CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling MainFrame.Name = "NamazFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) MainFrame.Position = UDim2.new(0.8, 0, 0.5, 0) MainFrame.Size = UDim2.new(0, 120, 0, 80) MainFrame.Active = true MainFrame.Draggable = true NamazButton.Name = "NamazButton" NamazButton.Parent = MainFrame NamazButton.Position = UDim2.new(0.1, 0, 0.1, 0) NamazButton.Size = UDim2.new(0.8, 0, 0.5, 0) NamazButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) NamazButton.Font = Enum.Font.SourceSansBold NamazButton.Text = "Namaz Başlat" NamazButton.TextColor3 = Color3.fromRGB(255, 255, 255) NamazButton.TextSize = 16.000 StatusLabel.Name = "StatusLabel" StatusLabel.Parent = MainFrame StatusLabel.Position = UDim2.new(0.1, 0, 0.65, 0) StatusLabel.Size = UDim2.new(0.8, 0, 0.3, 0) StatusLabel.BackgroundTransparency = 1 StatusLabel.Font = Enum.Font.SourceSans StatusLabel.Text = "Bekleniyor" StatusLabel.TextColor3 = Color3.fromRGB(255, 255, 255) StatusLabel.TextSize = 14.000 -- Ana Kod local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local Humanoid = Character:WaitForChild("Humanoid") local Torso = Character:WaitForChild("Torso") local namazDevam = false -- R6 CFrame Pozisyonları local NamazPozisyonlari = { Ayakta = CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), Ruku = CFrame.new(0, -0.5, -0.5) * CFrame.Angles(math.rad(45), 0, 0), Secde = CFrame.new(0, -1.5, -1) * CFrame.Angles(math.rad(90), 0, 0), Oturma = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), 0, 0) } local function setPozisyon(pozisyon) for _, part in pairs(Character:GetChildren()) do if part:IsA("BasePart") then local offset = part.Position - Torso.Position part.CFrame = Torso.CFrame * pozisyon * CFrame.new(offset) end end end local function namazDongusu() while namazDevam do -- Kıyam StatusLabel.Text = "Kıyam" setPozisyon(NamazPozisyonlari.Ayakta) wait(5) if not namazDevam then break end -- Rüku StatusLabel.Text = "Rüku" setPozisyon(NamazPozisyonlari.Ruku) wait(3) if not namazDevam then break end -- Doğrulma StatusLabel.Text = "Doğrulma" setPozisyon(NamazPozisyonlari.Ayakta) wait(2) if not namazDevam then break end -- İlk Secde StatusLabel.Text = "Secde" setPozisyon(NamazPozisyonlari.Secde) wait(3) if not namazDevam then break end -- Oturuş StatusLabel.Text = "Oturuş" setPozisyon(NamazPozisyonlari.Oturma) wait(2) if not namazDevam then break end -- İkinci Secde StatusLabel.Text = "Secde" setPozisyon(NamazPozisyonlari.Secde) wait(3) if not namazDevam then break end end end -- Buton Fonksiyonu NamazButton.MouseButton1Click:Connect(function() namazDevam = not namazDevam if namazDevam then NamazButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0) NamazButton.Text = "Namazı Bitir" coroutine.wrap(namazDongusu)() else NamazButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) NamazButton.Text = "Namaz Başlat" StatusLabel.Text = "Bekleniyor" setPozisyon(NamazPozisyonlari.Ayakta) end end) -- Karakter Yeniden Spawn Kontrolü LocalPlayer.CharacterAdded:Connect(function(newCharacter) Character = newCharacter Humanoid = Character:WaitForChild("Humanoid") Torso = Character:WaitForChild("Torso") if namazDevam then namazDevam = false NamazButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) NamazButton.Text = "Namaz Başlat" StatusLabel.Text = "Bekleniyor" end end) -- Anti AFK local VirtualUser = game:GetService('VirtualUser') LocalPlayer.Idled:Connect(function() VirtualUser:CaptureController() VirtualUser:ClickButton2(Vector2.new()) end)