3rlilxr

سكربت مسطول

Apr 21st, 2025
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.79 KB | None | 0 0
  1. local TweenService = game:GetService("TweenService")
  2. local UserInputService = game:GetService("UserInputService")
  3. local RunService = game:GetService("RunService")
  4.  
  5. -- Create main GUI
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local UICorner = Instance.new("UICorner")
  9. local TitleBar = Instance.new("Frame")
  10. local UICorner_2 = Instance.new("UICorner")
  11. local Title = Instance.new("TextLabel")
  12. local CloseButton = Instance.new("TextButton")
  13. local UICorner_3 = Instance.new("UICorner")
  14. local ContentFrame = Instance.new("Frame")
  15. local ExecuteButton = Instance.new("ImageButton")
  16. local ButtonLabel = Instance.new("TextLabel")
  17. local UICorner_4 = Instance.new("UICorner")
  18. local NekoImage = Instance.new("ImageLabel")
  19. local UICorner_5 = Instance.new("UICorner")
  20. local Particles = Instance.new("Frame")
  21. local DeveloperLabel = Instance.new("TextLabel")
  22.  
  23. -- Neon colors
  24. local pinkColor = Color3.fromRGB(255, 105, 180)
  25. local purpleColor = Color3.fromRGB(200, 100, 255)
  26. local blueColor = Color3.fromRGB(100, 200, 255)
  27.  
  28. -- GUI Properties
  29. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  30. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  31. ScreenGui.Name = "SenderXUwUGUI"
  32.  
  33. MainFrame.Parent = ScreenGui
  34. MainFrame.BackgroundColor3 = Color3.fromRGB(30, 20, 40)
  35. MainFrame.BackgroundTransparency = 0.2
  36. MainFrame.BorderSizePixel = 0
  37. MainFrame.Position = UDim2.new(0.5, -200, 0.5, -150)
  38. MainFrame.Size = UDim2.new(0, 400, 0, 300)
  39. MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  40.  
  41. UICorner.CornerRadius = UDim.new(0, 12)
  42. UICorner.Parent = MainFrame
  43.  
  44. -- Title Bar
  45. TitleBar.Name = "TitleBar"
  46. TitleBar.Parent = MainFrame
  47. TitleBar.BackgroundColor3 = Color3.fromRGB(50, 30, 70)
  48. TitleBar.BorderSizePixel = 0
  49. TitleBar.Size = UDim2.new(0, 400, 0, 40)
  50. TitleBar.ZIndex = 2
  51.  
  52. UICorner_2.CornerRadius = UDim.new(0, 12)
  53. UICorner_2.Parent = TitleBar
  54.  
  55. Title.Parent = TitleBar
  56. Title.BackgroundTransparency = 1
  57. Title.Size = UDim2.new(0, 300, 0, 40)
  58. Title.Font = Enum.Font.GothamBold
  59. Title.Text = "سكربت (مسطول) ☠️✨"
  60. Title.TextColor3 = pinkColor
  61. Title.TextSize = 18
  62. Title.TextXAlignment = Enum.TextXAlignment.Left
  63. Title.Position = UDim2.new(0, 15, 0, 0)
  64. Title.ZIndex = 3
  65.  
  66. -- Close Button
  67. CloseButton.Name = "CloseButton"
  68. CloseButton.Parent = TitleBar
  69. CloseButton.BackgroundColor3 = Color3.fromRGB(255, 80, 80)
  70. CloseButton.BorderSizePixel = 0
  71. CloseButton.Position = UDim2.new(1, -35, 0.5, -15)
  72. CloseButton.Size = UDim2.new(0, 30, 0, 30)
  73. CloseButton.Font = Enum.Font.GothamBold
  74. CloseButton.Text = "X"
  75. CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. CloseButton.TextSize = 18
  77. CloseButton.ZIndex = 3
  78.  
  79. UICorner_3.CornerRadius = UDim.new(1, 0)
  80. UICorner_3.Parent = CloseButton
  81.  
  82. -- Content Frame
  83. ContentFrame.Parent = MainFrame
  84. ContentFrame.BackgroundTransparency = 1
  85. ContentFrame.Position = UDim2.new(0, 0, 0, 45)
  86. ContentFrame.Size = UDim2.new(1, 0, 1, -45)
  87.  
  88. -- Neko Image
  89. local NekoImage = Instance.new("ImageLabel")
  90. NekoImage.Parent = ContentFrame
  91. NekoImage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  92. NekoImage.BorderSizePixel = 0
  93. NekoImage.Position = UDim2.new(0.5, -80, 0, 20)
  94. NekoImage.Size = UDim2.new(0, 160, 0, 160)
  95. NekoImage.Image = "rbxassetid://11778372953"
  96. NekoImage.ScaleType = Enum.ScaleType.Fit
  97. NekoImage.ZIndex = 2
  98.  
  99.  
  100. UICorner_5.CornerRadius = UDim.new(0, 20)
  101. UICorner_5.Parent = NekoImage
  102.  
  103. -- Execute Button
  104. ExecuteButton.Name = "ExecuteButton"
  105. ExecuteButton.Parent = ContentFrame
  106. ExecuteButton.BackgroundColor3 = pinkColor
  107. ExecuteButton.BorderSizePixel = 0
  108. ExecuteButton.Position = UDim2.new(0.5, -80, 0.7, 0)
  109. ExecuteButton.Size = UDim2.new(0, 160, 0, 40)
  110. ExecuteButton.Image = ""
  111. ExecuteButton.ZIndex = 3
  112.  
  113. ButtonLabel.Parent = ExecuteButton
  114. ButtonLabel.BackgroundTransparency = 1
  115. ButtonLabel.Size = UDim2.new(1, 0, 1, 0)
  116. ButtonLabel.Font = Enum.Font.GothamBold
  117. ButtonLabel.Text = "تفعيل مسطول"
  118. ButtonLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  119. ButtonLabel.TextSize = 18
  120. ButtonLabel.ZIndex = 4
  121.  
  122. UICorner_4.CornerRadius = UDim.new(0, 10)
  123. UICorner_4.Parent = ExecuteButton
  124.  
  125. -- Developer Label
  126. DeveloperLabel.Name = "DeveloperLabel"
  127. DeveloperLabel.Parent = MainFrame
  128. DeveloperLabel.BackgroundColor3 = Color3.fromRGB(40, 25, 60)
  129. DeveloperLabel.BorderSizePixel = 0
  130. DeveloperLabel.Position = UDim2.new(0, 10, 1, -25)
  131. DeveloperLabel.Size = UDim2.new(0, 200, 0, 20)
  132. DeveloperLabel.Font = Enum.Font.GothamBold
  133. DeveloperLabel.Text = "المبرمج/ه : سًـــالــيً "
  134. DeveloperLabel.TextColor3 = purpleColor
  135. DeveloperLabel.TextSize = 12
  136. DeveloperLabel.TextXAlignment = Enum.TextXAlignment.Left
  137. DeveloperLabel.ZIndex = 3
  138.  
  139. -- Neon Glow Effect Function
  140. local function applyNeonGlow(instance, color)
  141. local glow = Instance.new("ImageLabel")
  142. glow.Name = "NeonGlow"
  143. glow.Image = "rbxassetid://5028857084"
  144. glow.ImageColor3 = color
  145. glow.ScaleType = Enum.ScaleType.Slice
  146. glow.SliceCenter = Rect.new(24, 24, 276, 276)
  147. glow.BackgroundTransparency = 1
  148. glow.ZIndex = instance.ZIndex - 1
  149. glow.Size = UDim2.new(1, 24, 1, 24)
  150. glow.Position = UDim2.new(0, -12, 0, -12)
  151. glow.Parent = instance
  152.  
  153. local glowPulse = Instance.new("UIScale")
  154. glowPulse.Name = "GlowPulse"
  155. glowPulse.Parent = glow
  156.  
  157. local pulseTween = TweenService:Create(glowPulse, TweenInfo.new(1.5, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, -1, true), {
  158. Scale = 1.05
  159. })
  160. pulseTween:Play()
  161.  
  162. return glow
  163. end
  164.  
  165. -- Apply glow effects
  166. applyNeonGlow(MainFrame, purpleColor)
  167. applyNeonGlow(TitleBar, pinkColor)
  168. applyNeonGlow(ExecuteButton, pinkColor)
  169. applyNeonGlow(NekoImage, blueColor)
  170.  
  171. -- Sakura Particles
  172. local function createSakuraParticles(parent)
  173. local particles = Instance.new("Frame")
  174. particles.Name = "SakuraParticles"
  175. particles.BackgroundTransparency = 1
  176. particles.Size = UDim2.new(1, 0, 1, 0)
  177. particles.ZIndex = 0
  178. particles.Parent = parent
  179.  
  180. for i = 1, 15 do
  181. local sakura = Instance.new("ImageLabel")
  182. sakura.Name = "Sakura"..i
  183. sakura.Image = "rbxassetid://13182706635" -- Replace with sakura petal image
  184. sakura.Size = UDim2.new(0, 20, 0, 20)
  185. sakura.Position = UDim2.new(0, math.random(0, 400), 0, math.random(-50, -20))
  186. sakura.BackgroundTransparency = 1
  187. sakura.Rotation = math.random(0, 360)
  188. sakura.ZIndex = 1
  189. sakura.Parent = particles
  190.  
  191. local speed = math.random(30, 60)
  192. local sway = math.random(5, 15)
  193. local rotationSpeed = math.random(-5, 5)
  194.  
  195. coroutine.wrap(function()
  196. while sakura.Parent do
  197. sakura.Position = UDim2.new(
  198. 0, (sakura.Position.X.Offset + math.sin(os.clock() * 0.5) * sway) % 400,
  199. 0, (sakura.Position.Y.Offset + speed * 0.02) % 320
  200. )
  201. sakura.Rotation = sakura.Rotation + rotationSpeed
  202. sakura.ImageTransparency = 0.3 + 0.4 * math.sin(os.clock() * 2 + i)
  203. RunService.Heartbeat:Wait()
  204. end
  205. end)()
  206. end
  207. end
  208.  
  209. createSakuraParticles(MainFrame)
  210.  
  211. -- Hover Animation Function
  212. local function setupHoverAnimation(button)
  213. local originalSize = button.Size
  214. local originalPosition = button.Position
  215.  
  216. button.MouseEnter:Connect(function()
  217. TweenService:Create(button, TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {
  218. Size = originalSize + UDim2.new(0, 5, 0, 5),
  219. Position = originalPosition - UDim2.new(0, 2.5, 0, 2.5)
  220. }):Play()
  221.  
  222. if button:FindFirstChild("NeonGlow") then
  223. TweenService:Create(button.NeonGlow, TweenInfo.new(0.2), {
  224. ImageTransparency = 0.3
  225. }):Play()
  226. end
  227. end)
  228.  
  229. button.MouseLeave:Connect(function()
  230. TweenService:Create(button, TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {
  231. Size = originalSize,
  232. Position = originalPosition
  233. }):Play()
  234.  
  235. if button:FindFirstChild("NeonGlow") then
  236. TweenService:Create(button.NeonGlow, TweenInfo.new(0.2), {
  237. ImageTransparency = 0.7
  238. }):Play()
  239. end
  240. end)
  241.  
  242. button.MouseButton1Down:Connect(function()
  243. TweenService:Create(button, TweenInfo.new(0.1), {
  244. Size = originalSize - UDim2.new(0, 2, 0, 2),
  245. Position = originalPosition + UDim2.new(0, 1, 0, 1)
  246. }):Play()
  247. end)
  248.  
  249. button.MouseButton1Up:Connect(function()
  250. TweenService:Create(button, TweenInfo.new(0.1), {
  251. Size = originalSize,
  252. Position = originalPosition
  253. }):Play()
  254. end)
  255. end
  256.  
  257. setupHoverAnimation(ExecuteButton)
  258. setupHoverAnimation(CloseButton)
  259.  
  260. -- Text Effects
  261. local function applyTextEffect(label)
  262. local outline = Instance.new("UIStroke")
  263. outline.Name = "TextOutline"
  264. outline.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
  265. outline.Color = Color3.fromRGB(0, 0, 0)
  266. outline.Thickness = 2
  267. outline.Transparency = 0
  268. outline.Parent = label
  269.  
  270. local glow = Instance.new("UIStroke")
  271. glow.Name = "TextGlow"
  272. glow.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
  273. glow.Color = label.TextColor3
  274. glow.Thickness = 4
  275. glow.Transparency = 0.7
  276. glow.Parent = label
  277.  
  278. local pulseTween = TweenService:Create(glow, TweenInfo.new(1.5, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, -1, true), {
  279. Thickness = 6,
  280. Transparency = 0.5
  281. })
  282. pulseTween:Play()
  283. end
  284.  
  285. applyTextEffect(Title)
  286. applyTextEffect(ButtonLabel)
  287. applyTextEffect(DeveloperLabel)
  288.  
  289. -- Draggable functionality
  290. local dragging = false
  291. local dragInput, mousePos, framePos
  292.  
  293. TitleBar.InputBegan:Connect(function(input)
  294. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  295. dragging = true
  296. dragInput = input
  297. mousePos = UserInputService:GetMouseLocation()
  298. framePos = MainFrame.Position
  299. end
  300. end)
  301.  
  302. TitleBar.InputChanged:Connect(function(input)
  303. if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
  304. local delta = UserInputService:GetMouseLocation() - mousePos
  305. MainFrame.Position = UDim2.new(framePos.X.Scale, framePos.X.Offset + delta.X, framePos.Y.Scale, framePos.Y.Offset + delta.Y)
  306. end
  307. end)
  308.  
  309. TitleBar.InputEnded:Connect(function(input)
  310. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  311. dragging = false
  312. end
  313. end)
  314.  
  315. -- Close animation
  316. CloseButton.MouseButton1Click:Connect(function()
  317. local goalClose = {}
  318. goalClose.Position = UDim2.new(0.5, -200, 1.5, 0)
  319. local tweenClose = TweenService:Create(MainFrame, TweenInfo.new(0.5, Enum.EasingStyle.Back, Enum.EasingDirection.In), goalClose)
  320. tweenClose:Play()
  321. tweenClose.Completed:Connect(function()
  322. ScreenGui:Destroy()
  323. end)
  324. end)
  325.  
  326. -- Execute function
  327. ExecuteButton.MouseButton1Click:Connect(function()
  328. -- Create loading effect
  329. local loadingCircle = Instance.new("ImageLabel")
  330. loadingCircle.Name = "LoadingCircle"
  331. loadingCircle.Image = "rbxassetid://3570695787"
  332. loadingCircle.BackgroundTransparency = 1
  333. loadingCircle.Size = UDim2.new(0, 50, 0, 50)
  334. loadingCircle.Position = UDim2.new(0.5, -25, 0.5, -25)
  335. loadingCircle.ZIndex = 5
  336. loadingCircle.Parent = MainFrame
  337.  
  338. local spinTween = TweenService:Create(loadingCircle, TweenInfo.new(1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, -1), {
  339. Rotation = 360
  340. })
  341. spinTween:Play()
  342.  
  343. ButtonLabel.Text = "جاري التفعيل..."
  344.  
  345. -- Simulate loading
  346. wait(1.5)
  347.  
  348. -- Execute the script
  349. loadstring(game:HttpGet('https://raw.githubusercontent.com/kigredns/SanderXV4.2.2/refs/heads/main/NormalSS.lua'))()
  350.  
  351. -- Remove loading circle
  352. loadingCircle:Destroy()
  353. ButtonLabel.Text = "تم التشغيل بنجاح!"
  354.  
  355. wait(1)
  356. ButtonLabel.Text = "تشغيل مسطول"
  357. end)
  358.  
  359. -- Entrance animation
  360. MainFrame.Position = UDim2.new(0.5, -200, 0, -400)
  361. MainFrame.BackgroundTransparency = 1
  362. TitleBar.BackgroundTransparency = 1
  363. Title.TextTransparency = 1
  364. CloseButton.BackgroundTransparency = 1
  365. CloseButton.TextTransparency = 1
  366. ContentFrame.BackgroundTransparency = 1
  367. ExecuteButton.BackgroundTransparency = 1
  368. ButtonLabel.TextTransparency = 1
  369. NekoImage.ImageTransparency = 1
  370. DeveloperLabel.BackgroundTransparency = 1
  371. DeveloperLabel.TextTransparency = 1
  372.  
  373. local entranceTween = TweenService:Create(MainFrame, TweenInfo.new(0.8, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {
  374. Position = UDim2.new(0.5, -200, 0.5, -150),
  375. BackgroundTransparency = 0.2
  376. })
  377.  
  378. local fadeInTween = TweenService:Create(TitleBar, TweenInfo.new(0.5), {
  379. BackgroundTransparency = 0
  380. })
  381.  
  382. local textFadeIn = TweenService:Create(Title, TweenInfo.new(0.5), {
  383. TextTransparency = 0
  384. })
  385.  
  386. local closeFadeIn = TweenService:Create(CloseButton, TweenInfo.new(0.5), {
  387. BackgroundTransparency = 0,
  388. TextTransparency = 0
  389. })
  390.  
  391. local contentFadeIn = TweenService:Create(ContentFrame, TweenInfo.new(0.5), {
  392. BackgroundTransparency = 0
  393. })
  394.  
  395. local buttonFadeIn = TweenService:Create(ExecuteButton, TweenInfo.new(0.5), {
  396. BackgroundTransparency = 0
  397. })
  398.  
  399. local buttonTextFadeIn = TweenService:Create(ButtonLabel, TweenInfo.new(0.5), {
  400. TextTransparency = 0
  401. })
  402.  
  403. local nekoFadeIn = TweenService:Create(NekoImage, TweenInfo.new(0.5), {
  404. ImageTransparency = 0
  405. })
  406.  
  407. local devFadeIn = TweenService:Create(DeveloperLabel, TweenInfo.new(0.5), {
  408. BackgroundTransparency = 0,
  409. TextTransparency = 0
  410. })
  411.  
  412. entranceTween:Play()
  413. wait(0.2)
  414. fadeInTween:Play()
  415. textFadeIn:Play()
  416. closeFadeIn:Play()
  417. contentFadeIn:Play()
  418. buttonFadeIn:Play()
  419. buttonTextFadeIn:Play()
  420. nekoFadeIn:Play()
  421. devFadeIn:Play()
Advertisement
Add Comment
Please, Sign In to add comment