Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local TweenService = game:GetService("TweenService")
- local RunService = game:GetService("RunService")
- local UserInputService = game:GetService("UserInputService")
- -- واجهة نيوكات الجذابة
- local ScreenGui = Instance.new("ScreenGui")
- ScreenGui.Name = "NekoSuckGUI"
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- ScreenGui.ResetOnSpawn = false
- -- الإطار الرئيسي بتأثيرات النيون
- local MainFrame = Instance.new("Frame")
- MainFrame.Name = "NekoFrame"
- MainFrame.Parent = ScreenGui
- MainFrame.Size = UDim2.new(0, 350, 0, 200)
- MainFrame.Position = UDim2.new(0.5, -175, 0.5, -100)
- MainFrame.BackgroundColor3 = Color3.fromRGB(20, 10, 25)
- MainFrame.BackgroundTransparency = 0.15
- MainFrame.BorderSizePixel = 0
- MainFrame.Active = true
- MainFrame.Draggable = true
- MainFrame.ClipsDescendants = true
- -- تأثير النيون القوي
- local NeonGlow = Instance.new("ImageLabel")
- NeonGlow.Parent = MainFrame
- NeonGlow.Size = UDim2.new(1, 30, 1, 30)
- NeonGlow.Position = UDim2.new(0, -15, 0, -15)
- NeonGlow.Image = "rbxassetid://5028857084"
- NeonGlow.ImageColor3 = Color3.fromRGB(255, 80, 180)
- NeonGlow.ScaleType = Enum.ScaleType.Slice
- NeonGlow.SliceCenter = Rect.new(24, 24, 276, 276)
- NeonGlow.BackgroundTransparency = 1
- NeonGlow.ZIndex = 0
- -- تأثير النبض للنيون
- RunService.Heartbeat:Connect(function()
- local pulse = math.sin(tick() * 6) * 0.1 + 0.8
- NeonGlow.ImageTransparency = 1 - (pulse * 0.8)
- end)
- -- زوايا مدورة
- local mainCorner = Instance.new("UICorner")
- mainCorner.CornerRadius = UDim.new(0, 16)
- mainCorner.Parent = MainFrame
- -- ظل خفيف
- local MainShadow = Instance.new("ImageLabel")
- MainShadow.Parent = MainFrame
- MainShadow.Size = UDim2.new(1, 0, 1, 0)
- MainShadow.Image = "rbxassetid://1316045217"
- MainShadow.ImageColor3 = Color3.fromRGB(0, 0, 0)
- MainShadow.ImageTransparency = 0.8
- MainShadow.ScaleType = Enum.ScaleType.Slice
- MainShadow.SliceCenter = Rect.new(10, 10, 118, 118)
- MainShadow.BackgroundTransparency = 1
- MainShadow.ZIndex = -1
- -- شريط العنوان المضيء
- local TitleBar = Instance.new("Frame")
- TitleBar.Name = "NekoTitleBar"
- TitleBar.Parent = MainFrame
- TitleBar.BackgroundColor3 = Color3.fromRGB(30, 15, 35)
- TitleBar.Size = UDim2.new(1, 0, 0, 36)
- TitleBar.BorderSizePixel = 0
- -- تأثير توهج للعنوان
- local TitleGlow = Instance.new("Frame")
- TitleGlow.Parent = TitleBar
- TitleGlow.Size = UDim2.new(1, 0, 1, 0)
- TitleGlow.BackgroundColor3 = Color3.fromRGB(255, 100, 200)
- TitleGlow.BackgroundTransparency = 0.9
- TitleGlow.BorderSizePixel = 0
- TitleGlow.ZIndex = 0
- -- العنوان العربي مع إيموجي
- local Title = Instance.new("TextLabel")
- Title.Name = "NekoTitle"
- Title.Parent = TitleBar
- Title.BackgroundTransparency = 1
- Title.Size = UDim2.new(1, -80, 1, 0)
- Title.Position = UDim2.new(0, 40, 0, 0)
- Title.Font = Enum.Font.GothamBold
- Title.Text = "مص/ي للاعب | 💋✌️"
- Title.TextColor3 = Color3.fromRGB(255, 180, 240)
- Title.TextSize = 16
- Title.TextXAlignment = Enum.TextXAlignment.Left
- Title.ZIndex = 2
- -- تأثير نصي حاد مع ظل
- local TitleStroke = Instance.new("UIStroke")
- TitleStroke.Parent = Title
- TitleStroke.Color = Color3.fromRGB(255, 120, 220)
- TitleStroke.Thickness = 1
- TitleStroke.Transparency = 0.5
- -- أذن القطط المضيئة
- local LeftEar = Instance.new("ImageLabel")
- LeftEar.Parent = TitleBar
- LeftEar.Size = UDim2.new(0, 28, 0, 28)
- LeftEar.Position = UDim2.new(0, 6, 0, -14)
- LeftEar.Image = "rbxassetid://11348122410"
- LeftEar.ImageColor3 = Color3.fromRGB(255, 100, 200)
- LeftEar.BackgroundTransparency = 1
- LeftEar.ZIndex = 2
- local RightEar = Instance.new("ImageLabel")
- RightEar.Parent = TitleBar
- RightEar.Size = UDim2.new(0, 28, 0, 28)
- RightEar.Position = UDim2.new(0, 38, 0, -14)
- RightEar.Image = "rbxassetid://11348122410"
- RightEar.ImageColor3 = Color3.fromRGB(255, 100, 200)
- RightEar.BackgroundTransparency = 1
- RightEar.ZIndex = 2
- -- زر الإغلاق المضيء
- local CloseButton = Instance.new("TextButton")
- CloseButton.Name = "NekoClose"
- CloseButton.Parent = TitleBar
- CloseButton.BackgroundColor3 = Color3.fromRGB(70, 25, 55)
- CloseButton.Size = UDim2.new(0, 36, 1, 0)
- CloseButton.Position = UDim2.new(1, -36, 0, 0)
- CloseButton.Font = Enum.Font.GothamBold
- CloseButton.Text = "X"
- CloseButton.TextColor3 = Color3.fromRGB(255, 180, 220)
- CloseButton.TextSize = 18
- CloseButton.ZIndex = 2
- -- تأثير النيون لزر الإغلاق
- local CloseGlow = Instance.new("Frame")
- CloseGlow.Parent = CloseButton
- CloseGlow.Size = UDim2.new(1, 0, 1, 0)
- CloseGlow.BackgroundColor3 = Color3.fromRGB(255, 80, 150)
- CloseGlow.BackgroundTransparency = 0.9
- CloseGlow.BorderSizePixel = 0
- CloseGlow.ZIndex = 1
- -- حركات زر الإغلاق
- CloseButton.MouseEnter:Connect(function()
- TweenService:Create(CloseGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.2), {Size = UDim2.new(0, 40, 1, 0)}):Play()
- end)
- CloseButton.MouseLeave:Connect(function()
- TweenService:Create(CloseGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 180, 220)}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.2), {Size = UDim2.new(0, 36, 1, 0)}):Play()
- end)
- CloseButton.MouseButton1Down:Connect(function()
- TweenService:Create(CloseGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.5}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 150, 180)}):Play()
- end)
- CloseButton.MouseButton1Up:Connect(function()
- TweenService:Create(CloseGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(CloseButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
- ScreenGui:Destroy()
- end)
- -- حقل اسم اللاعب
- local UsernameBox = Instance.new("TextBox")
- UsernameBox.Name = "NekoUsernameBox"
- UsernameBox.Parent = MainFrame
- UsernameBox.BackgroundColor3 = Color3.fromRGB(40, 20, 35)
- UsernameBox.Size = UDim2.new(0.85, 0, 0, 40)
- UsernameBox.Position = UDim2.new(0.5, -148, 0.5, -25)
- UsernameBox.Font = Enum.Font.Gotham
- UsernameBox.PlaceholderText = "اكتب اسم الاعب هنا 😉💋"
- UsernameBox.Text = ""
- UsernameBox.TextColor3 = Color3.fromRGB(255, 200, 230)
- UsernameBox.TextSize = 14
- UsernameBox.ZIndex = 2
- -- تأثير النيون للحقل
- local UsernameGlow = Instance.new("Frame")
- UsernameGlow.Parent = UsernameBox
- UsernameGlow.Size = UDim2.new(1, 0, 1, 0)
- UsernameGlow.BackgroundColor3 = Color3.fromRGB(255, 100, 200)
- UsernameGlow.BackgroundTransparency = 0.9
- UsernameGlow.BorderSizePixel = 0
- UsernameGlow.ZIndex = 1
- -- زوايا مدورة للحقل
- local usernameCorner = Instance.new("UICorner")
- usernameCorner.CornerRadius = UDim.new(0, 10)
- usernameCorner.Parent = UsernameBox
- -- تأثيرات حقل النص
- UsernameBox.Focused:Connect(function()
- TweenService:Create(UsernameGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(UsernameBox, TweenInfo.new(0.2), {Size = UDim2.new(0.87, 0, 0, 42)}):Play()
- end)
- UsernameBox.FocusLost:Connect(function()
- TweenService:Create(UsernameGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
- TweenService:Create(UsernameBox, TweenInfo.new(0.2), {Size = UDim2.new(0.85, 0, 0, 40)}):Play()
- end)
- -- زر التشغيل الرئيسي
- local ToggleButton = Instance.new("TextButton")
- ToggleButton.Name = "NekoToggle"
- ToggleButton.Parent = MainFrame
- ToggleButton.BackgroundColor3 = Color3.fromRGB(50, 20, 40)
- ToggleButton.Size = UDim2.new(0.85, 0, 0, 40)
- ToggleButton.Position = UDim2.new(0.5, -148, 0.5, 30)
- ToggleButton.Font = Enum.Font.GothamBold
- ToggleButton.Text = "مص/ـي"
- ToggleButton.TextColor3 = Color3.fromRGB(255, 200, 230)
- ToggleButton.TextSize = 16
- ToggleButton.ZIndex = 2
- -- تأثير النيون للزر
- local ToggleGlow = Instance.new("Frame")
- ToggleGlow.Parent = ToggleButton
- ToggleGlow.Size = UDim2.new(1, 0, 1, 0)
- ToggleGlow.BackgroundColor3 = Color3.fromRGB(255, 80, 180)
- ToggleGlow.BackgroundTransparency = 0.85
- ToggleGlow.BorderSizePixel = 0
- ToggleGlow.ZIndex = 1
- -- زوايا مدورة للزر
- local toggleCorner = Instance.new("UICorner")
- toggleCorner.CornerRadius = UDim.new(0, 10)
- toggleCorner.Parent = ToggleButton
- -- جزيئات مضيئة
- local Sparkles = Instance.new("ParticleEmitter")
- Sparkles.Parent = ToggleButton
- Sparkles.LightEmission = 1
- Sparkles.Size = NumberSequence.new(3)
- Sparkles.Texture = "rbxassetid://242503421"
- Sparkles.Color = ColorSequence.new(Color3.fromRGB(255, 120, 220))
- Sparkles.Transparency = NumberSequence.new(0.4)
- Sparkles.Speed = NumberRange.new(10)
- Sparkles.Lifetime = NumberRange.new(0.7)
- Sparkles.Rate = 0
- Sparkles.Rotation = NumberRange.new(0, 360)
- Sparkles.SpreadAngle = Vector2.new(0, 360)
- Sparkles.ZOffset = 1
- -- حركات زر التشغيل
- ToggleButton.MouseEnter:Connect(function()
- TweenService:Create(ToggleGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 230, 240)}):Play()
- Sparkles.Rate = 30
- end)
- ToggleButton.MouseLeave:Connect(function()
- TweenService:Create(ToggleGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.85}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 200, 230)}):Play()
- Sparkles.Rate = 0
- end)
- ToggleButton.MouseButton1Down:Connect(function()
- TweenService:Create(ToggleGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.5}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 180, 200)}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.1), {Size = UDim2.new(0.83, 0, 0, 38)}):Play()
- end)
- ToggleButton.MouseButton1Up:Connect(function()
- TweenService:Create(ToggleGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.7}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 230, 240)}):Play()
- TweenService:Create(ToggleButton, TweenInfo.new(0.1), {Size = UDim2.new(0.85, 0, 0, 40)}):Play()
- end)
- -- ذيل القط المضيء
- local Tail = Instance.new("ImageLabel")
- Tail.Parent = MainFrame
- Tail.Size = UDim2.new(0, 50, 0, 100)
- Tail.Position = UDim2.new(1, -25, 1, -70)
- Tail.Image = "rbxassetid://11348122410"
- Tail.ImageColor3 = Color3.fromRGB(255, 100, 200)
- Tail.BackgroundTransparency = 1
- Tail.ZIndex = 0
- Tail.Rotation = -45
- -- حركة الذيل
- RunService.Heartbeat:Connect(function()
- Tail.Rotation = -45 + math.sin(tick() * 3) * 15
- end)
- -- الوظيفة الرئيسية مع تعديل الجلوس
- local running = false
- local targetPlayer
- local sitConnection
- local animTrack
- ToggleButton.MouseButton1Click:Connect(function()
- if not running then
- ToggleButton.Text = "توقف عن مص"
- ToggleButton.BackgroundColor3 = Color3.fromRGB(80, 25, 60)
- running = true
- local victim = UsernameBox.Text:lower()
- for _, player in pairs(game.Players:GetPlayers()) do
- if string.find(player.Name:lower(), victim) or string.find(player.DisplayName:lower(), victim) then
- targetPlayer = player
- break
- end
- end
- if targetPlayer then
- local localPlayer = game.Players.LocalPlayer
- local humanoid = localPlayer.Character:FindFirstChild("Humanoid")
- local targetCharacter = targetPlayer.Character
- if humanoid and targetCharacter then
- -- تشغيل حركة الجلوس
- humanoid.Sit = true
- -- ربط الحركة باللاعب الهدف
- sitConnection = game:GetService("RunService").Heartbeat:Connect(function()
- if running and targetCharacter:FindFirstChild("HumanoidRootPart") then
- localPlayer.Character:SetPrimaryPartCFrame(
- targetCharacter.HumanoidRootPart.CFrame * CFrame.new(0, -2, 0.5)
- )
- end
- end)
- end
- end
- else
- ToggleButton.Text = "مص/ـي"
- ToggleButton.BackgroundColor3 = Color3.fromRGB(50, 20, 40)
- running = false
- if sitConnection then
- sitConnection:Disconnect()
- sitConnection = nil
- end
- local localPlayer = game.Players.LocalPlayer
- if localPlayer.Character then
- local humanoid = localPlayer.Character:FindFirstChild("Humanoid")
- if humanoid then
- humanoid.Sit = false
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment