local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) -- Ana Frame oluştur local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 300, 0, 700) mainFrame.Position = UDim2.new(0, 10, 0, 10) mainFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2) mainFrame.BorderSizePixel = 0 mainFrame.Active = true -- Sürüklenebilir yapmak için aktif olması gerekir mainFrame.Draggable = true -- Frame sürüklenebilir hale getirildi mainFrame.Parent = screenGui -- Başlık ekleyelim local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 50) title.Position = UDim2.new(0, 0, 0, 0) title.Text = "Guest GUI" title.TextSize = 24 title.TextColor3 = Color3.new(1, 1, 1) title.BackgroundTransparency = 1 title.Font = Enum.Font.SourceSansBold title.Parent = mainFrame -- Genel buton oluşturma fonksiyonu local function createButton(name, positionY, callback) local button = Instance.new("TextButton") button.Text = name button.Size = UDim2.new(1, -20, 0, 40) -- Buton genişliği frame'e göre ayarlandı button.Position = UDim2.new(0, 10, 0, positionY) button.BackgroundColor3 = Color3.new(0.5, 0.5, 0.5) button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.SourceSansBold button.TextSize = 18 button.Parent = mainFrame button.MouseButton1Click:Connect(callback) end -- 10. Guest Oyun GG Yapma createButton("Guest Oyun GG Yapma", 60, function() -- Oyun sürekli akşam gündüz olsun ve renkli ateş efekti game.Lighting.ClockTime = 0 -- Akşam yapmak için game.Lighting.Ambient = Color3.fromRGB(255, 0, 0) -- Kırmızı ateş efekti game.Lighting.FogColor = Color3.fromRGB(255, 69, 0) -- Kızıl ateş rengi -- Herkes "Guest 666" desin for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character then local message = Instance.new("Message") message.Text = "Guest 666" message.Parent = workspace game:GetService("Debris"):AddItem(message, 5) end end -- Modellerin yere düşmesi for _, model in pairs(workspace:GetChildren()) do if model:IsA("Model") then model:SetPrimaryPartCFrame(CFrame.new(model.PrimaryPart.Position - Vector3.new(0, 10, 0))) end end -- Sunucudaki kişiler yanıma tp atsın for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character and plr ~= player then plr.Character:SetPrimaryPartCFrame(player.Character.HumanoidRootPart.CFrame) end end -- 6 saniye sonra her şey dursun wait(6) game.Lighting.Ambient = Color3.fromRGB(255, 255, 255) -- Normal ortam game.Lighting.FogColor = Color3.fromRGB(255, 255, 255) -- Normal renk end) -- 11. Yeni createButton("Yeni", 110, function() -- Kafası renkli ateş local headFire = Instance.new("Fire", player.Character.Head) headFire.Color = Color3.fromRGB(255, 0, 0) player.Character.Humanoid.WalkSpeed = 30 -- Tool ekleyelim local tool = Instance.new("Tool") tool.Name = "Kafa Kopar" tool.RequiresHandle = false tool.Parent = player.Backpack -- Kafa koparma işlevi tool.Activated:Connect(function() local target = player:GetMouse().Target if target and target.Parent and target.Parent:FindFirstChild("Humanoid") then local humanoid = target.Parent:FindFirstChild("Humanoid") if humanoid then -- Kafayı koparma efekti target.Parent.Head:Destroy() -- Kafayı yok et -- Kan efekti local blood = Instance.new("ParticleEmitter", target.Parent) blood.Color = ColorSequence.new(Color3.fromRGB(255, 0, 0)) blood.Texture = "rbxassetid://233960198" blood.Lifetime = NumberRange.new(1) blood.Size = NumberSequence.new(0.5) blood.Rate = 100 blood.Parent = target.Parent.Head end end end) end) -- 12. Guest Yapma Daha Özelikli createButton("Guest Yapma Daha Özelikli", 160, function() -- Tool ekleyelim local tool = Instance.new("Tool") tool.Name = "Guest Yapma" tool.RequiresHandle = false tool.Parent = player.Backpack -- Bir oyuncunun kafasına "Guest" yazısı eklemek tool.Activated:Connect(function() local target = player:GetMouse().Target if target and target.Parent and target.Parent:FindFirstChild("Humanoid") then local humanoid = target.Parent:FindFirstChild("Humanoid") if humanoid then -- Kafasında yazı local guestLabel = Instance.new("BillboardGui") guestLabel.Adornee = target.Parent.Head guestLabel.Size = UDim2.new(0, 200, 0, 50) guestLabel.StudsOffset = Vector3.new(0, 3, 0) guestLabel.Parent = target.Parent.Head local labelText = Instance.new("TextLabel") labelText.Text = "Guest" labelText.Size = UDim2.new(1, 0, 1, 0) labelText.TextColor3 = Color3.fromRGB(255, 0, 0) labelText.BackgroundTransparency = 1 labelText.Font = Enum.Font.SourceSansBold labelText.TextSize = 24 labelText.Parent = guestLabel -- Efektler local effect = Instance.new("Sparkles", target.Parent) effect.SparkleColor = Color3.fromRGB(255, 0, 0) target.Parent.Humanoid.WalkSpeed = 40 -- 5 saniye sonra dönüşüm efekti wait(5) humanoid.Health = 0 -- Karakteri öldür labelText.Text = "Guest 666 Kraldır" -- Kafasında ışık efekti local light = Instance.new("PointLight") light.Color = Color3.fromRGB(255, 0, 0) light.Parent = target.Parent.Head end end end) end) -- 13. Guest Efek createButton("Guest Efek", 210, function() -- Efektler ekleyelim local effect = Instance.new("Sparkles", player.Character) effect.SparkleColor = Color3.fromRGB(255, 0, 0) -- Vücuda efekt ekleyelim local bodyEffect = Instance.new("ParticleEmitter", player.Character:FindFirstChild("Torso")) bodyEffect.Color = ColorSequence.new(Color3.fromRGB(255, 0, 0)) bodyEffect.Texture = "rbxassetid://233960198" bodyEffect.Lifetime = NumberRange.new(1) bodyEffect.Size = NumberSequence.new(0.5) bodyEffect.Rate = 50 -- Hız artışı player.Character.Humanoid.WalkSpeed = 50 -- Yüz değiştirme efekti local face = player.Character:FindFirstChild("Head"):FindFirstChild("face") if face then face.Texture = "rbxassetid://209303268" -- Farklı bir yüz ekleyelim end end)