3rlilxr

مكمل* | تمص للاعب*

Apr 20th, 2025 (edited)
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.95 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local TweenService = game:GetService("TweenService")
  3. local RunService = game:GetService("RunService")
  4. local UserInputService = game:GetService("UserInputService")
  5.  
  6. -- واجهة نيوكات الجذابة
  7. local ScreenGui = Instance.new("ScreenGui")
  8. ScreenGui.Name = "NekoSuckGUI"
  9. ScreenGui.Parent = game.CoreGui
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11. ScreenGui.ResetOnSpawn = false
  12.  
  13. -- الإطار الرئيسي بتأثيرات النيون
  14. local MainFrame = Instance.new("Frame")
  15. MainFrame.Name = "NekoFrame"
  16. MainFrame.Parent = ScreenGui
  17. MainFrame.Size = UDim2.new(0, 350, 0, 200)
  18. MainFrame.Position = UDim2.new(0.5, -175, 0.5, -100)
  19. MainFrame.BackgroundColor3 = Color3.fromRGB(20, 10, 25)
  20. MainFrame.BackgroundTransparency = 0.15
  21. MainFrame.BorderSizePixel = 0
  22. MainFrame.Active = true
  23. MainFrame.Draggable = true
  24. MainFrame.ClipsDescendants = true
  25.  
  26. -- تأثير النيون القوي
  27. local NeonGlow = Instance.new("ImageLabel")
  28. NeonGlow.Parent = MainFrame
  29. NeonGlow.Size = UDim2.new(1, 30, 1, 30)
  30. NeonGlow.Position = UDim2.new(0, -15, 0, -15)
  31. NeonGlow.Image = "rbxassetid://5028857084"
  32. NeonGlow.ImageColor3 = Color3.fromRGB(255, 80, 180)
  33. NeonGlow.ScaleType = Enum.ScaleType.Slice
  34. NeonGlow.SliceCenter = Rect.new(24, 24, 276, 276)
  35. NeonGlow.BackgroundTransparency = 1
  36. NeonGlow.ZIndex = 0
  37.  
  38. -- تأثير النبض للنيون
  39. RunService.Heartbeat:Connect(function()
  40. local pulse = math.sin(tick() * 6) * 0.1 + 0.8
  41. NeonGlow.ImageTransparency = 1 - (pulse * 0.8)
  42. end)
  43.  
  44. -- زوايا مدورة
  45. local mainCorner = Instance.new("UICorner")
  46. mainCorner.CornerRadius = UDim.new(0, 16)
  47. mainCorner.Parent = MainFrame
  48.  
  49. -- ظل خفيف
  50. local MainShadow = Instance.new("ImageLabel")
  51. MainShadow.Parent = MainFrame
  52. MainShadow.Size = UDim2.new(1, 0, 1, 0)
  53. MainShadow.Image = "rbxassetid://1316045217"
  54. MainShadow.ImageColor3 = Color3.fromRGB(0, 0, 0)
  55. MainShadow.ImageTransparency = 0.8
  56. MainShadow.ScaleType = Enum.ScaleType.Slice
  57. MainShadow.SliceCenter = Rect.new(10, 10, 118, 118)
  58. MainShadow.BackgroundTransparency = 1
  59. MainShadow.ZIndex = -1
  60.  
  61. -- شريط العنوان المضيء
  62. local TitleBar = Instance.new("Frame")
  63. TitleBar.Name = "NekoTitleBar"
  64. TitleBar.Parent = MainFrame
  65. TitleBar.BackgroundColor3 = Color3.fromRGB(30, 15, 35)
  66. TitleBar.Size = UDim2.new(1, 0, 0, 36)
  67. TitleBar.BorderSizePixel = 0
  68.  
  69. -- تأثير توهج للعنوان
  70. local TitleGlow = Instance.new("Frame")
  71. TitleGlow.Parent = TitleBar
  72. TitleGlow.Size = UDim2.new(1, 0, 1, 0)
  73. TitleGlow.BackgroundColor3 = Color3.fromRGB(255, 100, 200)
  74. TitleGlow.BackgroundTransparency = 0.9
  75. TitleGlow.BorderSizePixel = 0
  76. TitleGlow.ZIndex = 0
  77.  
  78. -- العنوان العربي مع إيموجي
  79. local Title = Instance.new("TextLabel")
  80. Title.Name = "NekoTitle"
  81. Title.Parent = TitleBar
  82. Title.BackgroundTransparency = 1
  83. Title.Size = UDim2.new(1, -80, 1, 0)
  84. Title.Position = UDim2.new(0, 40, 0, 0)
  85. Title.Font = Enum.Font.GothamBold
  86. Title.Text = "مص/ي للاعب | 💋✌️"
  87. Title.TextColor3 = Color3.fromRGB(255, 180, 240)
  88. Title.TextSize = 16
  89. Title.TextXAlignment = Enum.TextXAlignment.Left
  90. Title.ZIndex = 2
  91.  
  92. -- تأثير نصي حاد مع ظل
  93. local TitleStroke = Instance.new("UIStroke")
  94. TitleStroke.Parent = Title
  95. TitleStroke.Color = Color3.fromRGB(255, 120, 220)
  96. TitleStroke.Thickness = 1
  97. TitleStroke.Transparency = 0.5
  98.  
  99. -- أذن القطط المضيئة
  100. local LeftEar = Instance.new("ImageLabel")
  101. LeftEar.Parent = TitleBar
  102. LeftEar.Size = UDim2.new(0, 28, 0, 28)
  103. LeftEar.Position = UDim2.new(0, 6, 0, -14)
  104. LeftEar.Image = "rbxassetid://11348122410"
  105. LeftEar.ImageColor3 = Color3.fromRGB(255, 100, 200)
  106. LeftEar.BackgroundTransparency = 1
  107. LeftEar.ZIndex = 2
  108.  
  109. local RightEar = Instance.new("ImageLabel")
  110. RightEar.Parent = TitleBar
  111. RightEar.Size = UDim2.new(0, 28, 0, 28)
  112. RightEar.Position = UDim2.new(0, 38, 0, -14)
  113. RightEar.Image = "rbxassetid://11348122410"
  114. RightEar.ImageColor3 = Color3.fromRGB(255, 100, 200)
  115. RightEar.BackgroundTransparency = 1
  116. RightEar.ZIndex = 2
  117.  
  118. -- زر الإغلاق المضيء
  119. local CloseButton = Instance.new("TextButton")
  120. CloseButton.Name = "NekoClose"
  121. CloseButton.Parent = TitleBar
  122. CloseButton.BackgroundColor3 = Color3.fromRGB(70, 25, 55)
  123. CloseButton.Size = UDim2.new(0, 36, 1, 0)
  124. CloseButton.Position = UDim2.new(1, -36, 0, 0)
  125. CloseButton.Font = Enum.Font.GothamBold
  126. CloseButton.Text = "X"
  127. CloseButton.TextColor3 = Color3.fromRGB(255, 180, 220)
  128. CloseButton.TextSize = 18
  129. CloseButton.ZIndex = 2
  130.  
  131. -- تأثير النيون لزر الإغلاق
  132. local CloseGlow = Instance.new("Frame")
  133. CloseGlow.Parent = CloseButton
  134. CloseGlow.Size = UDim2.new(1, 0, 1, 0)
  135. CloseGlow.BackgroundColor3 = Color3.fromRGB(255, 80, 150)
  136. CloseGlow.BackgroundTransparency = 0.9
  137. CloseGlow.BorderSizePixel = 0
  138. CloseGlow.ZIndex = 1
  139.  
  140. -- حركات زر الإغلاق
  141. CloseButton.MouseEnter:Connect(function()
  142. TweenService:Create(CloseGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
  143. TweenService:Create(CloseButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
  144. TweenService:Create(CloseButton, TweenInfo.new(0.2), {Size = UDim2.new(0, 40, 1, 0)}):Play()
  145. end)
  146.  
  147. CloseButton.MouseLeave:Connect(function()
  148. TweenService:Create(CloseGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
  149. TweenService:Create(CloseButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 180, 220)}):Play()
  150. TweenService:Create(CloseButton, TweenInfo.new(0.2), {Size = UDim2.new(0, 36, 1, 0)}):Play()
  151. end)
  152.  
  153. CloseButton.MouseButton1Down:Connect(function()
  154. TweenService:Create(CloseGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.5}):Play()
  155. TweenService:Create(CloseButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 150, 180)}):Play()
  156. end)
  157.  
  158. CloseButton.MouseButton1Up:Connect(function()
  159. TweenService:Create(CloseGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.7}):Play()
  160. TweenService:Create(CloseButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 220, 240)}):Play()
  161. ScreenGui:Destroy()
  162. end)
  163.  
  164. -- حقل اسم اللاعب
  165. local UsernameBox = Instance.new("TextBox")
  166. UsernameBox.Name = "NekoUsernameBox"
  167. UsernameBox.Parent = MainFrame
  168. UsernameBox.BackgroundColor3 = Color3.fromRGB(40, 20, 35)
  169. UsernameBox.Size = UDim2.new(0.85, 0, 0, 40)
  170. UsernameBox.Position = UDim2.new(0.5, -148, 0.5, -25)
  171. UsernameBox.Font = Enum.Font.Gotham
  172. UsernameBox.PlaceholderText = "اكتب اسم الاعب هنا 😉💋"
  173. UsernameBox.Text = ""
  174. UsernameBox.TextColor3 = Color3.fromRGB(255, 200, 230)
  175. UsernameBox.TextSize = 14
  176. UsernameBox.ZIndex = 2
  177.  
  178. -- تأثير النيون للحقل
  179. local UsernameGlow = Instance.new("Frame")
  180. UsernameGlow.Parent = UsernameBox
  181. UsernameGlow.Size = UDim2.new(1, 0, 1, 0)
  182. UsernameGlow.BackgroundColor3 = Color3.fromRGB(255, 100, 200)
  183. UsernameGlow.BackgroundTransparency = 0.9
  184. UsernameGlow.BorderSizePixel = 0
  185. UsernameGlow.ZIndex = 1
  186.  
  187. -- زوايا مدورة للحقل
  188. local usernameCorner = Instance.new("UICorner")
  189. usernameCorner.CornerRadius = UDim.new(0, 10)
  190. usernameCorner.Parent = UsernameBox
  191.  
  192. -- تأثيرات حقل النص
  193. UsernameBox.Focused:Connect(function()
  194. TweenService:Create(UsernameGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
  195. TweenService:Create(UsernameBox, TweenInfo.new(0.2), {Size = UDim2.new(0.87, 0, 0, 42)}):Play()
  196. end)
  197.  
  198. UsernameBox.FocusLost:Connect(function()
  199. TweenService:Create(UsernameGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.9}):Play()
  200. TweenService:Create(UsernameBox, TweenInfo.new(0.2), {Size = UDim2.new(0.85, 0, 0, 40)}):Play()
  201. end)
  202.  
  203. -- زر التشغيل الرئيسي
  204. local ToggleButton = Instance.new("TextButton")
  205. ToggleButton.Name = "NekoToggle"
  206. ToggleButton.Parent = MainFrame
  207. ToggleButton.BackgroundColor3 = Color3.fromRGB(50, 20, 40)
  208. ToggleButton.Size = UDim2.new(0.85, 0, 0, 40)
  209. ToggleButton.Position = UDim2.new(0.5, -148, 0.5, 30)
  210. ToggleButton.Font = Enum.Font.GothamBold
  211. ToggleButton.Text = "مص/ـي"
  212. ToggleButton.TextColor3 = Color3.fromRGB(255, 200, 230)
  213. ToggleButton.TextSize = 16
  214. ToggleButton.ZIndex = 2
  215.  
  216. -- تأثير النيون للزر
  217. local ToggleGlow = Instance.new("Frame")
  218. ToggleGlow.Parent = ToggleButton
  219. ToggleGlow.Size = UDim2.new(1, 0, 1, 0)
  220. ToggleGlow.BackgroundColor3 = Color3.fromRGB(255, 80, 180)
  221. ToggleGlow.BackgroundTransparency = 0.85
  222. ToggleGlow.BorderSizePixel = 0
  223. ToggleGlow.ZIndex = 1
  224.  
  225. -- زوايا مدورة للزر
  226. local toggleCorner = Instance.new("UICorner")
  227. toggleCorner.CornerRadius = UDim.new(0, 10)
  228. toggleCorner.Parent = ToggleButton
  229.  
  230. -- جزيئات مضيئة
  231. local Sparkles = Instance.new("ParticleEmitter")
  232. Sparkles.Parent = ToggleButton
  233. Sparkles.LightEmission = 1
  234. Sparkles.Size = NumberSequence.new(3)
  235. Sparkles.Texture = "rbxassetid://242503421"
  236. Sparkles.Color = ColorSequence.new(Color3.fromRGB(255, 120, 220))
  237. Sparkles.Transparency = NumberSequence.new(0.4)
  238. Sparkles.Speed = NumberRange.new(10)
  239. Sparkles.Lifetime = NumberRange.new(0.7)
  240. Sparkles.Rate = 0
  241. Sparkles.Rotation = NumberRange.new(0, 360)
  242. Sparkles.SpreadAngle = Vector2.new(0, 360)
  243. Sparkles.ZOffset = 1
  244.  
  245. -- حركات زر التشغيل
  246. ToggleButton.MouseEnter:Connect(function()
  247. TweenService:Create(ToggleGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.7}):Play()
  248. TweenService:Create(ToggleButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 230, 240)}):Play()
  249. Sparkles.Rate = 30
  250. end)
  251.  
  252. ToggleButton.MouseLeave:Connect(function()
  253. TweenService:Create(ToggleGlow, TweenInfo.new(0.2), {BackgroundTransparency = 0.85}):Play()
  254. TweenService:Create(ToggleButton, TweenInfo.new(0.2), {TextColor3 = Color3.fromRGB(255, 200, 230)}):Play()
  255. Sparkles.Rate = 0
  256. end)
  257.  
  258. ToggleButton.MouseButton1Down:Connect(function()
  259. TweenService:Create(ToggleGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.5}):Play()
  260. TweenService:Create(ToggleButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 180, 200)}):Play()
  261. TweenService:Create(ToggleButton, TweenInfo.new(0.1), {Size = UDim2.new(0.83, 0, 0, 38)}):Play()
  262. end)
  263.  
  264. ToggleButton.MouseButton1Up:Connect(function()
  265. TweenService:Create(ToggleGlow, TweenInfo.new(0.1), {BackgroundTransparency = 0.7}):Play()
  266. TweenService:Create(ToggleButton, TweenInfo.new(0.1), {TextColor3 = Color3.fromRGB(255, 230, 240)}):Play()
  267. TweenService:Create(ToggleButton, TweenInfo.new(0.1), {Size = UDim2.new(0.85, 0, 0, 40)}):Play()
  268. end)
  269.  
  270. -- ذيل القط المضيء
  271. local Tail = Instance.new("ImageLabel")
  272. Tail.Parent = MainFrame
  273. Tail.Size = UDim2.new(0, 50, 0, 100)
  274. Tail.Position = UDim2.new(1, -25, 1, -70)
  275. Tail.Image = "rbxassetid://11348122410"
  276. Tail.ImageColor3 = Color3.fromRGB(255, 100, 200)
  277. Tail.BackgroundTransparency = 1
  278. Tail.ZIndex = 0
  279. Tail.Rotation = -45
  280.  
  281. -- حركة الذيل
  282. RunService.Heartbeat:Connect(function()
  283. Tail.Rotation = -45 + math.sin(tick() * 3) * 15
  284. end)
  285.  
  286. -- الوظيفة الرئيسية مع تعديل الجلوس
  287. local running = false
  288. local targetPlayer
  289. local sitConnection
  290. local animTrack
  291.  
  292. ToggleButton.MouseButton1Click:Connect(function()
  293. if not running then
  294. ToggleButton.Text = "توقف عن مص"
  295. ToggleButton.BackgroundColor3 = Color3.fromRGB(80, 25, 60)
  296. running = true
  297.  
  298. local victim = UsernameBox.Text:lower()
  299.  
  300. for _, player in pairs(game.Players:GetPlayers()) do
  301. if string.find(player.Name:lower(), victim) or string.find(player.DisplayName:lower(), victim) then
  302. targetPlayer = player
  303. break
  304. end
  305. end
  306.  
  307. if targetPlayer then
  308. local localPlayer = game.Players.LocalPlayer
  309. local humanoid = localPlayer.Character:FindFirstChild("Humanoid")
  310. local targetCharacter = targetPlayer.Character
  311.  
  312. if humanoid and targetCharacter then
  313. -- تشغيل حركة الجلوس
  314. humanoid.Sit = true
  315.  
  316. -- ربط الحركة باللاعب الهدف
  317. sitConnection = game:GetService("RunService").Heartbeat:Connect(function()
  318. if running and targetCharacter:FindFirstChild("HumanoidRootPart") then
  319. localPlayer.Character:SetPrimaryPartCFrame(
  320. targetCharacter.HumanoidRootPart.CFrame * CFrame.new(0, -2, 0.5)
  321. )
  322. end
  323. end)
  324. end
  325. end
  326. else
  327. ToggleButton.Text = "مص/ـي"
  328. ToggleButton.BackgroundColor3 = Color3.fromRGB(50, 20, 40)
  329. running = false
  330.  
  331. if sitConnection then
  332. sitConnection:Disconnect()
  333. sitConnection = nil
  334. end
  335.  
  336. local localPlayer = game.Players.LocalPlayer
  337. if localPlayer.Character then
  338. local humanoid = localPlayer.Character:FindFirstChild("Humanoid")
  339. if humanoid then
  340. humanoid.Sit = false
  341. end
  342. end
  343. end
  344. end)
Advertisement
Add Comment
Please, Sign In to add comment