23gy

Untitled

Jul 26th, 2025 (edited)
5,383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- // DAIMONDxS6 Roblox GUI Script (JG-style)
  2. -- LocalScript داخل StarterPlayerScripts أو PlayerGui
  3. local Players = game:GetService("Players")
  4. local Replicated = game:GetService("ReplicatedStorage")
  5. local RunService = game:GetService("RunService")
  6. local player = Players.LocalPlayer
  7.  
  8. -- إعداد اللون RGB
  9. local function randRGB() return Color3.fromRGB(math.random(0,255),math.random(0,255),math.random(0,255)) end
  10.  
  11. -- GUI
  12. local gui = Instance.new("ScreenGui")
  13. gui.Name = "DAIMONDxS6"
  14. gui.ResetOnSpawn = false
  15. gui.Parent = player:WaitForChild("PlayerGui")
  16.  
  17. -- الخلفية
  18. local main = Instance.new("Frame", gui)
  19. main.Size = UDim2.new(0,350,0,500)
  20. main.Position = UDim2.new(0.5,-175,0.5,-250)
  21. main.BackgroundColor3 = Color3.fromRGB(40,0,0)
  22. main.Visible = false
  23.  
  24. -- ترويسة بشعار وصورتك
  25. local header = Instance.new("Frame", main)
  26. header.Size = UDim2.new(1,0,0,80)
  27. header.BackgroundColor3 = Color3.fromRGB(60,0,0)
  28. local label = Instance.new("TextLabel", header)
  29. label.Size = UDim2.new(0.8, -20, 1, 0)
  30. label.Position = UDim2.new(0,10,0,0)
  31. label.BackgroundTransparency = 1
  32. label.Font = Enum.Font.GothamBold
  33. label.Text = "DAIMONDxS6"
  34. label.TextColor3 = Color3.new(1,1,1)
  35. label.TextSize = 28
  36. -- صورة المطور
  37. local ico = Instance.new("ImageLabel", header)
  38. ico.Size = UDim2.new(0,80,0,80)
  39. ico.Position = UDim2.new(0.8,0,0,0)
  40. ico.Image = "rbxassetid://YOUR_IMAGE_ID" -- حط ID الصورة هنا
  41.  
  42. -- زر الإظهار/الإخفاء
  43. local toggle = Instance.new("TextButton", gui)
  44. toggle.Size = UDim2.new(0,120,0,40)
  45. toggle.Position = UDim2.new(0,10,0,10)
  46. toggle.Text = "إظهار/إخفاء"
  47. toggle.Font = Enum.Font.GothamBold
  48. toggle.TextSize = 22
  49. toggle.BackgroundColor3 = Color3.fromRGB(80,0,0)
  50. toggle.TextColor3 = Color3.new(1,1,1)
  51. toggle.MouseButton1Click:Connect(function()
  52. main.Visible = not main.Visible
  53. end)
  54.  
  55. -- نافذة الباسورد
  56. local passF = Instance.new("Frame", gui)
  57. passF.Size = UDim2.new(0,300,0,150)
  58. passF.Position = UDim2.new(0.5,-150,0.5,-75)
  59. passF.BackgroundColor3 = Color3.fromRGB(50,0,0)
  60. local passBox = Instance.new("TextBox", passF)
  61. passBox.Size = UDim2.new(0.8,0,0.3,0)
  62. passBox.Position = UDim2.new(0.1,0,0.2,0)
  63. passBox.PlaceholderText = "ادخل الباسورد"
  64. passBox.TextScaled = true
  65. local passBtn = Instance.new("TextButton", passF)
  66. passBtn.Size = UDim2.new(0.6,0,0.3,0)
  67. passBtn.Position = UDim2.new(0.2,0,0.6,0)
  68. passBtn.Text = "دخول"
  69. passBtn.TextScaled = true
  70. passBtn.MouseButton1Click:Connect(function()
  71. if passBox.Text == "DAIMONDxS6" then
  72. passF:Destroy()
  73. main.Visible = true
  74. end
  75. end)
  76.  
  77. -- RGB للاسم والـBio
  78. task.spawn(function()
  79. while true do
  80. wait(0.5)
  81. player.DisplayName = string.format("<font color='rgb(%d,%d,%d)'>%s</font>",
  82. math.random(0,255),math.random(0,255),player.Name)
  83. -- لو الـBio مدعوم
  84. pcall(function()
  85. local desc = player.Character and player.Character:FindFirstChildOfClass("Humanoid")
  86. if desc and desc:FindFirstChild("DisplayName") == nil then
  87. -- no direct Bio API في LocalScripts، ممكن يحاول تغيير description
  88. end
  89. end)
  90. end
  91. end)
  92.  
  93. -- قسم الأدوات
  94. local tools = Instance.new("Frame", main)
  95. tools.Size = UDim2.new(0.4,0,0.8,0)
  96. tools.Position = UDim2.new(0.05,0,0.15,0)
  97. tools.BackgroundTransparency = 1
  98. local function makeBtn(p, txt, y, cb)
  99. local b = Instance.new("TextButton", p)
  100. b.Size = UDim2.new(0.9,0,0,40)
  101. b.Position = UDim2.new(0.05,0,y,0)
  102. b.Text = txt; b.Font=Enum.Font.GothamBold; b.TextSize=20
  103. b.BackgroundColor3 = Color3.fromRGB(30,0,0); b.TextColor3 = Color3.new(1,1,1)
  104. b.MouseButton1Click:Connect(cb)
  105. return b
  106. end
  107.  
  108. -- Bang
  109. makeBtn(tools, "🔥 Bang", 10, function()
  110. local event = Replicated.DefaultChatSystemChatEvents:FindFirstChild("SayMessageRequest")
  111. if event then event:FireServer("bang","All") end
  112. end)
  113. -- AFK
  114. local isAfk=false
  115. makeBtn(tools,"😴 AFK",60,function()
  116. local hum = player.Character and player.Character:FindFirstChildOfClass("Humanoid")
  117. if hum then
  118. if not isAfk then
  119. hum.WalkSpeed=0; hum.JumpPower=0; isAfk=true
  120. local Billboard = Instance.new("BillboardGui",player.Character.Head)
  121. Billboard.Size=UDim2.new(0,100,0,50)
  122. Billboard.Adornee=player.Character.Head
  123. Billboard.AlwaysOnTop=true
  124. local t = Instance.new("TextLabel",Billboard)
  125. t.Size=UDim2.new(1,0,1,0); t.BackgroundTransparency=1
  126. t.Text="😴 AFK"; t.TextColor3=Color3.new(1,1,1); t.Font=Enum.Font.GothamBold; t.TextScaled=true
  127. else
  128. hum.WalkSpeed=16; hum.JumpPower=50; isAfk=false
  129. -- إزالة الـAFK billboard
  130. local head=player.Character and player.Character:FindFirstChild("Head")
  131. if head then head:FindFirstChildOfClass("BillboardGui") and head.BillboardGui:Destroy() end
  132. end
  133. end
  134. end)
  135. -- Speed
  136. makeBtn(tools,"⚡ Speed",110,function()
  137. local hum=player.Character and player.Character:FindFirstChildOfClass("Humanoid")
  138. if hum then hum.WalkSpeed = 100 end
  139. end)
  140. -- Fly (مثالة بسيطة وليس احترافي)
  141. makeBtn(tools,"🕊️ Fly Toggle",160,function()
  142. local hum=player.Character and player.Character:FindFirstChildOfClass("Humanoid")
  143. hum.PlatformStand = not hum.PlatformStand
  144. end)
  145. -- Skins
  146. makeBtn(tools,"🐱 Skin قطة",210,function()
  147. player.CharacterAppearanceId = 12345678
  148. player:LoadCharacter()
  149. end)
  150. makeBtn(tools,"🐶 Skin كلب",260,function()
  151. player.CharacterAppearanceId = 23456789
  152. player:LoadCharacter()
  153. end)
  154. makeBtn(tools,"🟩 Skin ماين كرافت",310,function()
  155. player.CharacterAppearanceId = 34567890
  156. player:LoadCharacter()
  157. end)
  158.  
  159. -- قسم التخريب
  160. local sabotage = Instance.new("Frame", main)
  161. sabotage.Size = UDim2.new(0.4,0,0.8,0)
  162. sabotage.Position = UDim2.new(0.55,0,0.15,0)
  163. sabotage.BackgroundTransparency = 1
  164. -- Dropdown لاعب
  165. local dd = Instance.new("TextLabel", sabotage)
  166. dd.Size = UDim2.new(0.9,0,0,30)
  167. dd.Position = UDim2.new(0.05,0,10,0)
  168. dd.Text = "اختار لاعب"
  169. dd.TextColor3 = Color3.new(1,1,1); dd.BackgroundColor3 = Color3.fromRGB(30,0,0)
  170. dd.Font = Enum.Font.GothamBold; dd.TextSize = 20
  171.  
  172. local list = Instance.new("Frame", sabotage)
  173. list.Size = UDim2.new(0.9,0,0,150)
  174. list.Position = UDim2.new(0.05,0,50,0)
  175. list.BackgroundColor3 = Color3.fromRGB(30,0,0)
  176.  
  177. local function refreshList()
  178. list:ClearAllChildren()
  179. local y=0
  180. for i, pl in ipairs(Players:GetPlayers()) do
  181. local btn = Instance.new("TextButton", list)
  182. btn.Size = UDim2.new(1,0,0,30)
  183. btn.Position = UDim2.new(0,0,y,0)
  184. btn.Text = pl.Name
  185. btn.Font = Enum.Font.Gotham
  186. btn.TextSize = 18
  187. btn.BackgroundColor3 = Color3.fromRGB(50,0,0)
  188. btn.TextColor3 = Color3.new(1,1,1)
  189. btn.MouseButton1Click:Connect(function() dd.Text = pl.Name dd.Name = pl.Name end)
  190. y += 30
  191. end
  192. end
  193. Players.PlayerAdded:Connect(refreshList)
  194. Players.PlayerRemoving:Connect(refreshList)
  195. refreshList()
  196.  
  197. -- زر قتل
  198. makeBtn(sabotage,"🗡️ اقتل اللاعب",220,function()
  199. local target = Players:FindFirstChild(dd.Name)
  200. if target and target.Character then
  201. local hum = target.Character:FindFirstChildOfClass("Humanoid")
  202. if hum then hum:BreakJoints() end
  203. end
  204. end)
  205.  
  206.  
Add Comment
Please, Sign In to add comment