-- K00PKİD GUİ v4 (Fire Eklendi) by Grok local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "K00PKidGUI" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = game:GetService("CoreGui") local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 520, 0, 450) MainFrame.Position = UDim2.new(0.5, -260, 0.5, -225) MainFrame.BackgroundColor3 = Color3.new(0, 0, 0) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local Border = Instance.new("UIStroke") Border.Color = Color3.fromRGB(0, 255, 0) -- Neon yeşil Border.Thickness = 4 Border.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, -60, 0, 50) Title.Position = UDim2.new(0.5, -25, 0, 0) Title.AnchorPoint = Vector2.new(0.5, 0) Title.BackgroundTransparency = 1 Title.Text = "K00PKİD GUİ" Title.TextColor3 = Color3.fromRGB(0, 255, 0) Title.Font = Enum.Font.Code Title.TextSize = 36 Title.TextStrokeTransparency = 0 Title.TextStrokeColor3 = Color3.new(0, 0, 0) Title.Parent = MainFrame -- Kapat Butonu local CloseBtn = Instance.new("TextButton") CloseBtn.Size = UDim2.new(0, 40, 0, 40) CloseBtn.Position = UDim2.new(1, -45, 0, 5) CloseBtn.BackgroundColor3 = Color3.new(0, 0, 0) CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.fromRGB(255, 0, 0) -- Kırmızı X CloseBtn.Font = Enum.Font.Code CloseBtn.TextSize = 28 CloseBtn.TextStrokeTransparency = 0 CloseBtn.TextStrokeColor3 = Color3.new(0, 0, 0) local CloseStroke = Instance.new("UIStroke") CloseStroke.Color = Color3.fromRGB(0, 255, 0) CloseStroke.Thickness = 2 CloseStroke.Parent = CloseBtn CloseBtn.Parent = MainFrame CloseBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) local GridFrame = Instance.new("Frame") GridFrame.Size = UDim2.new(1, -40, 1, -90) GridFrame.Position = UDim2.new(0, 20, 0, 60) GridFrame.BackgroundTransparency = 1 GridFrame.Parent = MainFrame local GridLayout = Instance.new("UIGridLayout") GridLayout.CellSize = UDim2.new(0, 145, 0, 80) GridLayout.CellPadding = UDim2.new(0, 15, 0, 20) GridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center GridLayout.VerticalAlignment = Enum.VerticalAlignment.Center GridLayout.SortOrder = Enum.SortOrder.LayoutOrder GridLayout.Parent = GridFrame -- Buton oluşturma fonksiyonu local function CreateButton(name, layoutOrder) local btn = Instance.new("TextButton") btn.Name = name btn.LayoutOrder = layoutOrder or 0 btn.BackgroundColor3 = Color3.new(0, 0, 0) btn.Text = name btn.TextColor3 = Color3.fromRGB(0, 255, 0) btn.Font = Enum.Font.Code btn.TextSize = 24 btn.TextStrokeTransparency = 0 btn.TextStrokeColor3 = Color3.new(0, 0, 0) local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(0, 255, 0) stroke.Thickness = 3 stroke.Parent = btn btn.Parent = GridFrame return btn end -- Butonlar (LayoutOrder ile sıralı) local DecalBtn = CreateButton("Decal", 1) local SkyboxBtn = CreateButton("Skybox", 2) local HintBtn = CreateButton("Hint", 3) local JumpscareBtn = CreateButton("Jumpscare", 4) local MessageBtn = CreateButton("Message", 5) local DiscoBtn = CreateButton("Disco", 6) local FireBtn = CreateButton("Fire", 7) -- Tıklama olayları DecalBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-K00pkidd-decal-spam-43507"))() end) SkyboxBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-k00pkidd-skybox-43507"))() end) HintBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-K00pkidd-hint-43505"))() end) JumpscareBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-K00pkidd-jumpscare-43507"))() end) MessageBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-K00pkidd-message-43505"))() end) DiscoBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-disco-script-56983"))() end) FireBtn.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Fire-the-server-26489"))() end) print("K00PKİD GUİ v4 (Fire Eklendi) yüklendi!")