3rlilxr

مكمل* | اغتصاب الاعب من مكوته*

Apr 20th, 2025 (edited)
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.92 KB | None | 0 0
  1. -- Services
  2. local Players = game:GetService("Players")
  3. local TweenService = game:GetService("TweenService")
  4. local RunService = game:GetService("RunService")
  5. local UserInputService = game:GetService("UserInputService")
  6. local LocalPlayer = Players.LocalPlayer
  7.  
  8. -- Create the ScreenGui with modern properties
  9. local ScreenGui = Instance.new("ScreenGui")
  10. ScreenGui.Parent = game.CoreGui
  11. ScreenGui.Name = "NeonGamingUI"
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Global
  13. ScreenGui.ResetOnSpawn = false
  14.  
  15. -- Main Frame with advanced styling
  16. local MainFrame = Instance.new("Frame")
  17. MainFrame.Parent = ScreenGui
  18. MainFrame.Size = UDim2.new(0, 350, 0, 200)
  19. MainFrame.Position = UDim2.new(0.5, -175, 0.5, -100)
  20. MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 30)
  21. MainFrame.BackgroundTransparency = 0.15
  22. MainFrame.BorderSizePixel = 0
  23. MainFrame.Draggable = true
  24. MainFrame.Active = true
  25.  
  26. -- Modern squircle shape with dynamic glow
  27. local UICorner = Instance.new("UICorner")
  28. UICorner.Parent = MainFrame
  29. UICorner.CornerRadius = UDim.new(0, 12)
  30.  
  31. -- Neon border effect
  32. local FrameGlow = Instance.new("UIStroke")
  33. FrameGlow.Parent = MainFrame
  34. FrameGlow.Color = Color3.fromRGB(100, 200, 255)
  35. FrameGlow.Thickness = 2
  36. FrameGlow.Transparency = 0.3
  37. FrameGlow.LineJoinMode = Enum.LineJoinMode.Round
  38.  
  39. -- Pulsing glow animation
  40. coroutine.wrap(function()
  41. while true do
  42. for i = 0, 1, 0.05 do
  43. FrameGlow.Transparency = 0.3 + (i * 0.3)
  44. RunService.RenderStepped:Wait()
  45. end
  46. for i = 1, 0, -0.05 do
  47. FrameGlow.Transparency = 0.3 + (i * 0.3)
  48. RunService.RenderStepped:Wait()
  49. end
  50. end
  51. end)()
  52.  
  53. -- Title Bar with gradient
  54. local TitleBar = Instance.new("Frame")
  55. TitleBar.Parent = MainFrame
  56. TitleBar.Size = UDim2.new(1, 0, 0, 30)
  57. TitleBar.BackgroundColor3 = Color3.fromRGB(40, 40, 60)
  58. TitleBar.BorderSizePixel = 0
  59.  
  60. local TitleGradient = Instance.new("UIGradient")
  61. TitleGradient.Color = ColorSequence.new({
  62. ColorSequenceKeypoint.new(0, Color3.fromRGB(80, 120, 200)),
  63. ColorSequenceKeypoint.new(1, Color3.fromRGB(100, 70, 180))
  64. })
  65. TitleGradient.Rotation = 90
  66. TitleGradient.Parent = TitleBar
  67.  
  68. -- Title Label with neon text effect
  69. local TitleLabel = Instance.new("TextLabel")
  70. TitleLabel.Parent = TitleBar
  71. TitleLabel.Size = UDim2.new(0, 150, 1, 0)
  72. TitleLabel.Position = UDim2.new(0, 10, 0, 0)
  73. TitleLabel.Text = "✨ اغتصاب الاعب من طيزه | V1.0✨"
  74. TitleLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  75. TitleLabel.BackgroundTransparency = 1
  76. TitleLabel.Font = Enum.Font.GothamBold
  77. TitleLabel.TextSize = 16
  78. TitleLabel.TextStrokeColor3 = Color3.fromRGB(100, 200, 255)
  79. TitleLabel.TextStrokeTransparency = 0.7
  80.  
  81. -- Close Button with hover effects
  82. local CloseButton = Instance.new("TextButton")
  83. CloseButton.Parent = TitleBar
  84. CloseButton.Size = UDim2.new(0, 30, 1, 0)
  85. CloseButton.Position = UDim2.new(1, -30, 0, 0)
  86. CloseButton.Text = "X"
  87. CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  88. CloseButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50)
  89. CloseButton.BackgroundTransparency = 0.7
  90. CloseButton.Font = Enum.Font.GothamBold
  91. CloseButton.TextSize = 16
  92. CloseButton.BorderSizePixel = 0
  93.  
  94. local CloseCorner = Instance.new("UICorner")
  95. CloseCorner.Parent = CloseButton
  96. CloseCorner.CornerRadius = UDim.new(0, 6)
  97.  
  98. local CloseGlow = Instance.new("UIStroke")
  99. CloseGlow.Parent = CloseButton
  100. CloseGlow.Color = Color3.fromRGB(255, 120, 120)
  101. CloseGlow.Thickness = 1.5
  102. CloseGlow.Transparency = 0.3
  103.  
  104. -- Minimize Button with modern style
  105. local MinimizeButton = Instance.new("TextButton")
  106. MinimizeButton.Parent = TitleBar
  107. MinimizeButton.Size = UDim2.new(0, 30, 1, 0)
  108. MinimizeButton.Position = UDim2.new(1, -70, 0, 0)
  109. MinimizeButton.Text = "-"
  110. MinimizeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  111. MinimizeButton.BackgroundColor3 = Color3.fromRGB(100, 100, 180)
  112. MinimizeButton.BackgroundTransparency = 0.7
  113. MinimizeButton.Font = Enum.Font.GothamBold
  114. MinimizeButton.TextSize = 18
  115. MinimizeButton.BorderSizePixel = 0
  116.  
  117. local MinimizeCorner = Instance.new("UICorner")
  118. MinimizeCorner.Parent = MinimizeButton
  119. MinimizeCorner.CornerRadius = UDim.new(0, 6)
  120.  
  121. local MinimizeGlow = Instance.new("UIStroke")
  122. MinimizeGlow.Parent = MinimizeButton
  123. MinimizeGlow.Color = Color3.fromRGB(150, 150, 255)
  124. MinimizeGlow.Thickness = 1.5
  125. MinimizeGlow.Transparency = 0.3
  126.  
  127. -- Target TextBox with modern styling
  128. local TargetTextBox = Instance.new("TextBox")
  129. TargetTextBox.Parent = MainFrame
  130. TargetTextBox.Size = UDim2.new(0.9, 0, 0, 35)
  131. TargetTextBox.Position = UDim2.new(0.05, 0, 0.25, 0)
  132. TargetTextBox.PlaceholderText = "حط اسم الاعب هون 😉✌️"
  133. TargetTextBox.Text = ""
  134. TargetTextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  135. TargetTextBox.BackgroundColor3 = Color3.fromRGB(40, 40, 60)
  136. TargetTextBox.BackgroundTransparency = 0.7
  137. TargetTextBox.Font = Enum.Font.Gotham
  138. TargetTextBox.TextSize = 14
  139. TargetTextBox.ClearTextOnFocus = false
  140. TargetTextBox.BorderSizePixel = 0
  141.  
  142. local TextBoxCorner = Instance.new("UICorner")
  143. TextBoxCorner.Parent = TargetTextBox
  144. TextBoxCorner.CornerRadius = UDim.new(0, 8)
  145.  
  146. local TextBoxGlow = Instance.new("UIStroke")
  147. TextBoxGlow.Parent = TargetTextBox
  148. TextBoxGlow.Color = Color3.fromRGB(100, 180, 255)
  149. TextBoxGlow.Thickness = 1
  150. TextBoxGlow.Transparency = 0.5
  151.  
  152. -- Toggle Button with advanced effects
  153. local ToggleButton = Instance.new("TextButton")
  154. ToggleButton.Parent = MainFrame
  155. ToggleButton.Size = UDim2.new(0.9, 0, 0, 40)
  156. ToggleButton.Position = UDim2.new(0.05, 0, 0.55, 0)
  157. ToggleButton.Text = "اغتصب"
  158. ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  159. ToggleButton.BackgroundColor3 = Color3.fromRGB(80, 160, 220)
  160. ToggleButton.BackgroundTransparency = 0.7
  161. ToggleButton.Font = Enum.Font.GothamBold
  162. ToggleButton.TextSize = 16
  163. ToggleButton.BorderSizePixel = 0
  164.  
  165. local ToggleCorner = Instance.new("UICorner")
  166. ToggleCorner.Parent = ToggleButton
  167. ToggleCorner.CornerRadius = UDim.new(0, 8)
  168.  
  169. local ToggleGlow = Instance.new("UIStroke")
  170. ToggleGlow.Parent = ToggleButton
  171. ToggleGlow.Color = Color3.fromRGB(100, 200, 255)
  172. ToggleGlow.Thickness = 2
  173. ToggleGlow.Transparency = 0.3
  174.  
  175. -- Button animation function
  176. local function setupButtonAnimation(button)
  177. local originalSize = button.Size
  178. local originalPos = button.Position
  179. local originalTransparency = button.BackgroundTransparency
  180. local originalGlow = button.UIStroke.Transparency
  181.  
  182. button.MouseEnter:Connect(function()
  183. TweenService:Create(button, TweenInfo.new(0.15), {
  184. Size = originalSize + UDim2.new(0, 5, 0, 5),
  185. Position = originalPos - UDim2.new(0, 2.5, 0, 2.5),
  186. BackgroundTransparency = originalTransparency - 0.1
  187. }):Play()
  188.  
  189. TweenService:Create(button.UIStroke, TweenInfo.new(0.15), {
  190. Thickness = 2.5,
  191. Transparency = originalGlow - 0.2
  192. }):Play()
  193. end)
  194.  
  195. button.MouseLeave:Connect(function()
  196. TweenService:Create(button, TweenInfo.new(0.2), {
  197. Size = originalSize,
  198. Position = originalPos,
  199. BackgroundTransparency = originalTransparency
  200. }):Play()
  201.  
  202. TweenService:Create(button.UIStroke, TweenInfo.new(0.2), {
  203. Thickness = 2,
  204. Transparency = originalGlow
  205. }):Play()
  206. end)
  207.  
  208. button.MouseButton1Down:Connect(function()
  209. TweenService:Create(button, TweenInfo.new(0.1), {
  210. Size = originalSize - UDim2.new(0, 2, 0, 2),
  211. Position = originalPos + UDim2.new(0, 1, 0, 1),
  212. BackgroundTransparency = originalTransparency - 0.15
  213. }):Play()
  214. end)
  215.  
  216. button.MouseButton1Up:Connect(function()
  217. TweenService:Create(button, TweenInfo.new(0.15, Enum.EasingStyle.Back), {
  218. Size = originalSize,
  219. Position = originalPos,
  220. BackgroundTransparency = originalTransparency
  221. }):Play()
  222. end)
  223. end
  224.  
  225. -- Apply animations to all buttons
  226. setupButtonAnimation(CloseButton)
  227. setupButtonAnimation(MinimizeButton)
  228. setupButtonAnimation(ToggleButton)
  229.  
  230. -- TextBox focus effects
  231. TargetTextBox.Focused:Connect(function()
  232. TweenService:Create(TargetTextBox.UIStroke, TweenInfo.new(0.2), {
  233. Thickness = 2,
  234. Transparency = 0.2
  235. }):Play()
  236. end)
  237.  
  238. TargetTextBox.FocusLost:Connect(function()
  239. TweenService:Create(TargetTextBox.UIStroke, TweenInfo.new(0.2), {
  240. Thickness = 1,
  241. Transparency = 0.5
  242. }):Play()
  243. end)
  244.  
  245. -- Minimize functionality
  246. local minimized = false
  247. MinimizeButton.MouseButton1Click:Connect(function()
  248. minimized = not minimized
  249. if minimized then
  250. TweenService:Create(MainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Back), {
  251. Size = UDim2.new(0, 350, 0, 30)
  252. }):Play()
  253. MinimizeButton.Text = "+"
  254. else
  255. TweenService:Create(MainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Back), {
  256. Size = UDim2.new(0, 350, 0, 200)
  257. }):Play()
  258. MinimizeButton.Text = "─"
  259. end
  260. end)
  261.  
  262. -- Close functionality
  263. CloseButton.MouseButton1Click:Connect(function()
  264. TweenService:Create(MainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Back), {
  265. Size = UDim2.new(0, 0, 0, 0)
  266. }):Play()
  267. wait(0.3)
  268. ScreenGui:Destroy()
  269. end)
  270.  
  271. -- Original functionality remains unchanged below this point
  272. local following = false
  273. local targetPlayer = nil
  274. local animationId = "10714068222"
  275. local activeAnimation
  276.  
  277. ToggleButton.MouseButton1Click:Connect(function()
  278. if not following then
  279. -- Start following
  280. local targetName = TargetTextBox.Text:lower()
  281. targetPlayer = nil
  282.  
  283. for _, player in pairs(Players:GetPlayers()) do
  284. if player.Name:lower():find(targetName) or player.DisplayName:lower():find(targetName) then
  285. targetPlayer = player
  286. break
  287. end
  288. end
  289.  
  290. if targetPlayer and targetPlayer.Character then
  291. following = true
  292. ToggleButton.Text = "STOP"
  293.  
  294. -- Play Animation
  295. local humanoid = LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  296. if humanoid then
  297. local animation = Instance.new("Animation")
  298. animation.AnimationId = "rbxassetid://" .. animationId
  299. activeAnimation = humanoid:LoadAnimation(animation)
  300. activeAnimation:Play()
  301. activeAnimation:AdjustSpeed(2)
  302. end
  303.  
  304. coroutine.wrap(function()
  305. local lastPosition = nil
  306. while following do
  307. local targetCharacter = targetPlayer.Character
  308. if targetCharacter and targetCharacter:FindFirstChild("HumanoidRootPart") then
  309. local targetHRP = targetCharacter.HumanoidRootPart
  310. local targetPosition = targetHRP.Position
  311. local targetLookVector = targetHRP.CFrame.LookVector
  312.  
  313. -- Smoothly position character behind the target
  314. local forwardCFrame = targetHRP.CFrame * CFrame.new(0, 0, 1)
  315. local backwardCFrame = targetHRP.CFrame * CFrame.new(0, 0, 2.5)
  316.  
  317. -- Forward motion
  318. local tweenForward = TweenService:Create(
  319. LocalPlayer.Character:FindFirstChild("HumanoidRootPart"),
  320. TweenInfo.new(0.2, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  321. {CFrame = forwardCFrame}
  322. )
  323. tweenForward:Play()
  324. tweenForward.Completed:Wait()
  325.  
  326. -- Backward motion
  327. local tweenBackward = TweenService:Create(
  328. LocalPlayer.Character:FindFirstChild("HumanoidRootPart"),
  329. TweenInfo.new(0.2, Enum.EasingStyle.Linear, Enum.EasingDirection.Out),
  330. {CFrame = backwardCFrame}
  331. )
  332. tweenBackward:Play()
  333. tweenBackward.Completed:Wait()
  334.  
  335. -- Stop if target becomes invalid
  336. lastPosition = targetPosition
  337. else
  338. following = false
  339. ToggleButton.Text = "START"
  340. break
  341. end
  342. end
  343. end)()
  344. else
  345. print("Target not found!")
  346. end
  347. else
  348. -- Stop following
  349. following = false
  350. ToggleButton.Text = "START"
  351.  
  352. -- Stop Animation
  353. if activeAnimation then
  354. activeAnimation:Stop()
  355. activeAnimation = nil
  356. end
  357. end
  358. end)
  359.  
  360. -- Initial animation
  361. MainFrame.Size = UDim2.new(0, 0, 0, 0)
  362. TweenService:Create(MainFrame, TweenInfo.new(0.5, Enum.EasingStyle.Back), {
  363. Size = UDim2.new(0, 350, 0, 200)
  364. }):Play()
Advertisement
Add Comment
Please, Sign In to add comment