local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0.3, 0, 0.7, 0) frame.Position = UDim2.new(0.35, 0, 0.15, 0) frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) frame.Parent = screenGui frame.Active = true frame.Draggable = true local function createButton(name, position, callback) local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0.1, 0) button.Position = UDim2.new(0.1, 0, position, 0) button.BackgroundColor3 = Color3.fromRGB(100, 100, 255) button.Text = name button.TextColor3 = Color3.new(1, 1, 1) button.Parent = frame button.MouseButton1Click:Connect(callback) end -- 1. Patlayan Balon createButton("Patlayan Balon", 0, function() for i = 1, 5 do local balloon = Instance.new("Part") balloon.Shape = Enum.PartType.Ball balloon.Size = Vector3.new(2, 2, 2) balloon.Color = Color3.new(math.random(), math.random(), math.random()) balloon.Position = player.Character.Head.Position + Vector3.new(0, 5 + i * 2, 0) balloon.Anchored = true balloon.Parent = workspace task.delay(2, function() balloon:Destroy() end) end end) -- 2. Kırmızı Yağmur ve Akşam createButton("Kırmızı Yağmur", 0.12, function() game.Lighting.TimeOfDay = "20:00" for i = 1, 100 do local rain = Instance.new("Part") rain.Size = Vector3.new(0.5, 5, 0.5) rain.Color = Color3.new(1, 0, 0) rain.Position = Vector3.new(math.random(-50, 50), 50, math.random(-50, 50)) rain.Anchored = true rain.Parent = workspace task.delay(3, function() rain:Destroy() end) end end) -- 8. Şimşek Düşür createButton("Şimşek Düşür", 0.24, function() local lightning = Instance.new("Part") lightning.Size = Vector3.new(1, 20, 1) lightning.Color = Color3.new(1, 1, 0) lightning.Position = player.Character.Head.Position + Vector3.new(0, 10, 0) lightning.Anchored = true lightning.Parent = workspace task.delay(0.5, function() lightning:Destroy() end) end) -- 9. Minyon Çağır createButton("Minyon Çağır", 0.36, function() for i = 1, 3 do local minion = Instance.new("Model") local head = Instance.new("Part") head.Size = Vector3.new(2, 2, 2) head.Color = Color3.new(math.random(), math.random(), math.random()) head.Position = player.Character.Head.Position + Vector3.new(i * 3, 0, 0) head.Parent = minion minion.Parent = workspace end end) -- 10. Fırlatma Mekaniği createButton("Fırlatma Mekaniği", 0.48, function() local players = game.Players:GetPlayers() for _, target in pairs(players) do if target ~= player then target.Character.HumanoidRootPart.Velocity = Vector3.new(0, 50, 0) end end end) -- 6. Kafamızda Dönen Top createButton("Kafada Dönen Top", 0.6, function() local spinningPart = Instance.new("Part") spinningPart.Shape = Enum.PartType.Ball spinningPart.Size = Vector3.new(3, 3, 3) spinningPart.Color = Color3.new(1, 0, 0) spinningPart.Anchored = false spinningPart.Parent = workspace spinningPart.CFrame = player.Character.Head.CFrame * CFrame.new(0, 5, 0) local bodyGyro = Instance.new("BodyGyro", spinningPart) local bodyPosition = Instance.new("BodyPosition", spinningPart) bodyPosition.Position = player.Character.Head.Position + Vector3.new(0, 5, 0) game:GetService("RunService").Heartbeat:Connect(function() bodyPosition.Position = player.Character.Head.Position + Vector3.new(0, 5, 0) end) end) -- 7. Oyuncu Bırakmama createButton("Oyuncu Bırakmama", 0.72, function() for _, target in pairs(game.Players:GetPlayers()) do if target ~= player then local freezeBlock = Instance.new("Part") freezeBlock.Size = Vector3.new(3, 3, 3) freezeBlock.Color = Color3.new(math.random(), math.random(), math.random()) freezeBlock.Position = target.Character.Head.Position freezeBlock.Anchored = true freezeBlock.Parent = workspace local attachment = Instance.new("Attachment", freezeBlock) local rope = Instance.new("RopeConstraint", freezeBlock) rope.Attachment0 = attachment rope.Attachment1 = target.Character.HumanoidRootPart rope.Length = 5 end end end)