Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- // DAIMONDxS6 Roblox GUI Script (JG-style)
- -- LocalScript داخل StarterPlayerScripts أو PlayerGui
- local Players = game:GetService("Players")
- local Replicated = game:GetService("ReplicatedStorage")
- local RunService = game:GetService("RunService")
- local player = Players.LocalPlayer
- -- إعداد اللون RGB
- local function randRGB() return Color3.fromRGB(math.random(0,255),math.random(0,255),math.random(0,255)) end
- -- GUI
- local gui = Instance.new("ScreenGui")
- gui.Name = "DAIMONDxS6"
- gui.ResetOnSpawn = false
- gui.Parent = player:WaitForChild("PlayerGui")
- -- الخلفية
- local main = Instance.new("Frame", gui)
- main.Size = UDim2.new(0,350,0,500)
- main.Position = UDim2.new(0.5,-175,0.5,-250)
- main.BackgroundColor3 = Color3.fromRGB(40,0,0)
- main.Visible = false
- -- ترويسة بشعار وصورتك
- local header = Instance.new("Frame", main)
- header.Size = UDim2.new(1,0,0,80)
- header.BackgroundColor3 = Color3.fromRGB(60,0,0)
- local label = Instance.new("TextLabel", header)
- label.Size = UDim2.new(0.8, -20, 1, 0)
- label.Position = UDim2.new(0,10,0,0)
- label.BackgroundTransparency = 1
- label.Font = Enum.Font.GothamBold
- label.Text = "DAIMONDxS6"
- label.TextColor3 = Color3.new(1,1,1)
- label.TextSize = 28
- -- صورة المطور
- local ico = Instance.new("ImageLabel", header)
- ico.Size = UDim2.new(0,80,0,80)
- ico.Position = UDim2.new(0.8,0,0,0)
- ico.Image = "rbxassetid://YOUR_IMAGE_ID" -- حط ID الصورة هنا
- -- زر الإظهار/الإخفاء
- local toggle = Instance.new("TextButton", gui)
- toggle.Size = UDim2.new(0,120,0,40)
- toggle.Position = UDim2.new(0,10,0,10)
- toggle.Text = "إظهار/إخفاء"
- toggle.Font = Enum.Font.GothamBold
- toggle.TextSize = 22
- toggle.BackgroundColor3 = Color3.fromRGB(80,0,0)
- toggle.TextColor3 = Color3.new(1,1,1)
- toggle.MouseButton1Click:Connect(function()
- main.Visible = not main.Visible
- end)
- -- نافذة الباسورد
- local passF = Instance.new("Frame", gui)
- passF.Size = UDim2.new(0,300,0,150)
- passF.Position = UDim2.new(0.5,-150,0.5,-75)
- passF.BackgroundColor3 = Color3.fromRGB(50,0,0)
- local passBox = Instance.new("TextBox", passF)
- passBox.Size = UDim2.new(0.8,0,0.3,0)
- passBox.Position = UDim2.new(0.1,0,0.2,0)
- passBox.PlaceholderText = "ادخل الباسورد"
- passBox.TextScaled = true
- local passBtn = Instance.new("TextButton", passF)
- passBtn.Size = UDim2.new(0.6,0,0.3,0)
- passBtn.Position = UDim2.new(0.2,0,0.6,0)
- passBtn.Text = "دخول"
- passBtn.TextScaled = true
- passBtn.MouseButton1Click:Connect(function()
- if passBox.Text == "DAIMONDxS6" then
- passF:Destroy()
- main.Visible = true
- end
- end)
- -- RGB للاسم والـBio
- task.spawn(function()
- while true do
- wait(0.5)
- player.DisplayName = string.format("<font color='rgb(%d,%d,%d)'>%s</font>",
- math.random(0,255),math.random(0,255),player.Name)
- -- لو الـBio مدعوم
- pcall(function()
- local desc = player.Character and player.Character:FindFirstChildOfClass("Humanoid")
- if desc and desc:FindFirstChild("DisplayName") == nil then
- -- no direct Bio API في LocalScripts، ممكن يحاول تغيير description
- end
- end)
- end
- end)
- -- قسم الأدوات
- local tools = Instance.new("Frame", main)
- tools.Size = UDim2.new(0.4,0,0.8,0)
- tools.Position = UDim2.new(0.05,0,0.15,0)
- tools.BackgroundTransparency = 1
- local function makeBtn(p, txt, y, cb)
- local b = Instance.new("TextButton", p)
- b.Size = UDim2.new(0.9,0,0,40)
- b.Position = UDim2.new(0.05,0,y,0)
- b.Text = txt; b.Font=Enum.Font.GothamBold; b.TextSize=20
- b.BackgroundColor3 = Color3.fromRGB(30,0,0); b.TextColor3 = Color3.new(1,1,1)
- b.MouseButton1Click:Connect(cb)
- return b
- end
- -- Bang
- makeBtn(tools, "🔥 Bang", 10, function()
- local event = Replicated.DefaultChatSystemChatEvents:FindFirstChild("SayMessageRequest")
- if event then event:FireServer("bang","All") end
- end)
- -- AFK
- local isAfk=false
- makeBtn(tools,"😴 AFK",60,function()
- local hum = player.Character and player.Character:FindFirstChildOfClass("Humanoid")
- if hum then
- if not isAfk then
- hum.WalkSpeed=0; hum.JumpPower=0; isAfk=true
- local Billboard = Instance.new("BillboardGui",player.Character.Head)
- Billboard.Size=UDim2.new(0,100,0,50)
- Billboard.Adornee=player.Character.Head
- Billboard.AlwaysOnTop=true
- local t = Instance.new("TextLabel",Billboard)
- t.Size=UDim2.new(1,0,1,0); t.BackgroundTransparency=1
- t.Text="😴 AFK"; t.TextColor3=Color3.new(1,1,1); t.Font=Enum.Font.GothamBold; t.TextScaled=true
- else
- hum.WalkSpeed=16; hum.JumpPower=50; isAfk=false
- -- إزالة الـAFK billboard
- local head=player.Character and player.Character:FindFirstChild("Head")
- if head then head:FindFirstChildOfClass("BillboardGui") and head.BillboardGui:Destroy() end
- end
- end
- end)
- -- Speed
- makeBtn(tools,"⚡ Speed",110,function()
- local hum=player.Character and player.Character:FindFirstChildOfClass("Humanoid")
- if hum then hum.WalkSpeed = 100 end
- end)
- -- Fly (مثالة بسيطة وليس احترافي)
- makeBtn(tools,"🕊️ Fly Toggle",160,function()
- local hum=player.Character and player.Character:FindFirstChildOfClass("Humanoid")
- hum.PlatformStand = not hum.PlatformStand
- end)
- -- Skins
- makeBtn(tools,"🐱 Skin قطة",210,function()
- player.CharacterAppearanceId = 12345678
- player:LoadCharacter()
- end)
- makeBtn(tools,"🐶 Skin كلب",260,function()
- player.CharacterAppearanceId = 23456789
- player:LoadCharacter()
- end)
- makeBtn(tools,"🟩 Skin ماين كرافت",310,function()
- player.CharacterAppearanceId = 34567890
- player:LoadCharacter()
- end)
- -- قسم التخريب
- local sabotage = Instance.new("Frame", main)
- sabotage.Size = UDim2.new(0.4,0,0.8,0)
- sabotage.Position = UDim2.new(0.55,0,0.15,0)
- sabotage.BackgroundTransparency = 1
- -- Dropdown لاعب
- local dd = Instance.new("TextLabel", sabotage)
- dd.Size = UDim2.new(0.9,0,0,30)
- dd.Position = UDim2.new(0.05,0,10,0)
- dd.Text = "اختار لاعب"
- dd.TextColor3 = Color3.new(1,1,1); dd.BackgroundColor3 = Color3.fromRGB(30,0,0)
- dd.Font = Enum.Font.GothamBold; dd.TextSize = 20
- local list = Instance.new("Frame", sabotage)
- list.Size = UDim2.new(0.9,0,0,150)
- list.Position = UDim2.new(0.05,0,50,0)
- list.BackgroundColor3 = Color3.fromRGB(30,0,0)
- local function refreshList()
- list:ClearAllChildren()
- local y=0
- for i, pl in ipairs(Players:GetPlayers()) do
- local btn = Instance.new("TextButton", list)
- btn.Size = UDim2.new(1,0,0,30)
- btn.Position = UDim2.new(0,0,y,0)
- btn.Text = pl.Name
- btn.Font = Enum.Font.Gotham
- btn.TextSize = 18
- btn.BackgroundColor3 = Color3.fromRGB(50,0,0)
- btn.TextColor3 = Color3.new(1,1,1)
- btn.MouseButton1Click:Connect(function() dd.Text = pl.Name dd.Name = pl.Name end)
- y += 30
- end
- end
- Players.PlayerAdded:Connect(refreshList)
- Players.PlayerRemoving:Connect(refreshList)
- refreshList()
- -- زر قتل
- makeBtn(sabotage,"🗡️ اقتل اللاعب",220,function()
- local target = Players:FindFirstChild(dd.Name)
- if target and target.Character then
- local hum = target.Character:FindFirstChildOfClass("Humanoid")
- if hum then hum:BreakJoints() end
- end
- end)
Add Comment
Please, Sign In to add comment