-- LocalScript içinde kullanılacak local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") -- GUI oluşturma local gui = Instance.new("ScreenGui") gui.Name = "GUEST_LERE_GUI_V2" gui.Parent = playerGui -- Ana çerçeve local frame = Instance.new("Frame") frame.Size = UDim2.new(0.6, 0, 0.7, 0) frame.Position = UDim2.new(0.2, 0, 0.15, 0) frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0) -- Renkli arka plan frame.Parent = gui -- Buton oluşturma fonksiyonu local function createButton(name, text, position, parent, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(0.4, 0, 0.1, 0) button.Position = position button.Text = text button.BackgroundColor3 = Color3.fromRGB(0, 0, 255) -- Mavi arka plan button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Parent = parent button.MouseButton1Click:Connect(callback) return button end -- 1. Buton: Guest Tool'ları createButton("GuestTools", "Guest Tool'ları", UDim2.new(0.3, 0, 0.1, 0), frame, function() -- "İstediğin Kişiyi Yakma" aracı local tool1 = Instance.new("Tool") tool1.Name = "İstediğin Kişiyi Yakma" tool1.RequiresHandle = false tool1.Parent = player.Backpack tool1.Activated:Connect(function() local target = player:GetMouse().Target if target and target.Parent:FindFirstChild("Humanoid") then target.Parent.Humanoid:TakeDamage(100) -- Hasar ver target.Parent.HumanoidRootPart.BrickColor = BrickColor.new("Bright red") local fire = Instance.new("Fire", target.Parent.HumanoidRootPart) fire.Color = Color3.fromRGB(255, 0, 0) end end) -- "Guest Yapmak" aracı local tool2 = Instance.new("Tool") tool2.Name = "Guest Yapmak" tool2.RequiresHandle = false tool2.Parent = player.Backpack tool2.Activated:Connect(function() local target = player:GetMouse().Target if target and target.Parent:FindFirstChild("Humanoid") then target.Parent.Name = "Guest" target.Parent.HumanoidRootPart.BrickColor = BrickColor.new("Bright blue") target.Parent.Humanoid:TakeDamage(0) -- Zararsız dönüşüm target.Parent.HumanoidRootPart:Rotate(Vector3.new(0, 360, 0)) game:GetService("Chat"):Chat(target.Parent.Head, "Guest'ım güçlüdür!", Enum.ChatColor.Red) end end) end) -- 2. Buton: Guest Gücü createButton("GuestPower1", "Guest Gücü", UDim2.new(0.3, 0, 0.25, 0), frame, function() workspace:WaitForChild("Lighting").ClockTime = 20 -- Gece yap for i = 1, 10 do local fireball = Instance.new("Part") fireball.Size = Vector3.new(5, 5, 5) fireball.Position = Vector3.new(math.random(-50, 50), 50, math.random(-50, 50)) fireball.BrickColor = BrickColor.new("Bright red") fireball.Anchored = false fireball.CanCollide = false fireball.Parent = workspace end wait(2) local statue = Instance.new("Model") statue.Name = "Guest Heykeli" local part = Instance.new("Part") part.Size = Vector3.new(10, 20, 10) part.BrickColor = BrickColor.new("Bright red") part.Anchored = true part.Position = Vector3.new(0, 10, 0) part.Parent = statue statue.Parent = workspace wait(4) statue:Destroy() end) -- 3. Buton: Guest Gücü 2 createButton("GuestPower2", "Guest Gücü 2", UDim2.new(0.3, 0, 0.4, 0), frame, function() local giantBall = Instance.new("Part") giantBall.Size = Vector3.new(50, 50, 50) giantBall.Position = Vector3.new(0, 100, 0) giantBall.BrickColor = BrickColor.new("Black") giantBall.Anchored = false giantBall.Parent = workspace wait(3) local explosion = Instance.new("Explosion") explosion.Position = giantBall.Position explosion.Parent = workspace giantBall:Destroy() end) -- 4. Buton: Guest Gücü 4 createButton("GuestPower4", "Guest Gücü 4", UDim2.new(0.3, 0, 0.55, 0), frame, function() for _, v in pairs(game.Players:GetPlayers()) do if v.Character and v.Character:FindFirstChild("Humanoid") then v.Character.Humanoid:Move(Vector3.new(0, 360, 0)) local fire = Instance.new("Fire", v.Character.Head) fire.Color = Color3.fromRGB(255, 69, 0) wait(5) fire:Destroy() end end end) -- 5. Buton: Guest Bucağı createButton("GuestKnife", "Guest Bucağı", UDim2.new(0.3, 0, 0.7, 0), frame, function() local knife = Instance.new("Tool") knife.Name = "Bucak" knife.RequiresHandle = false knife.Parent = player.Backpack knife.Activated:Connect(function() local target = player:GetMouse().Target if target and target.Parent:FindFirstChild("Humanoid") then target.Parent.Humanoid:TakeDamage(50) -- Zarar ver local blood = Instance.new("Part", workspace) blood.Size = Vector3.new(1, 1, 1) blood.Position = target.Position blood.BrickColor = BrickColor.new("Bright red") end end) end)